diff -Nru libreoffice-7.3.6/ChangeLog libreoffice-7.3.7/ChangeLog --- libreoffice-7.3.6/ChangeLog 2022-09-02 16:23:39.000000000 +0000 +++ libreoffice-7.3.7/ChangeLog 2022-10-27 10:13:14.000000000 +0000 @@ -1,34 +1,1326 @@ -2022-09-02 Christian Lohmaier [c28ca90fd6e1a19e189fc16c05f8f8924961e12e] +2022-10-27 Christian Lohmaier [e114eadc50a9ff8d8c8a0567d6da8f454beeb84f] - Version 7.3.6.2, tag libreoffice-7.3.6.2 + Version 7.3.7.2, tag libreoffice-7.3.7.2 -2022-09-02 Christian Lohmaier [25970eb217183f6bb89b5225aed6c13a488661f4] +2022-10-27 Christian Lohmaier [d8d07056038da8ddb688dea21d0299da81e9dc79] - bump product version to 7.3.6.2 + bump product version to 7.3.7.2 - Change-Id: Ib4c6789ce084e9ce04ea62c1dc5c9ea86c8f666b + Change-Id: Icaa78fc1d66e5e6a4d6daf5d054d984f98ab7940 -2022-09-02 Caolán McNamara [5c433800c24281c7d7edfb5b3fd6759c524907c1] +2022-10-27 Paris Oplopoios [7ba1d10282ea51ecfe74188412c4d2627604802c] - check IFrame "FrameURL" target + tdf#150888 Scale down PPI if it would result in a tiny image + + The reason for the blurry document in tdf#150888 is that the image is + tiny. PPI is 2540 in that image but when using the window bounding box + (96, 81) this results in a very small image that the .odt then scales up + which makes it blurry. + + Apart from that, when opening the extracted .wmf in Draw it's also very + small, around 0.04" squared. + + Because MM_ANISOTROPICs definition allows for arbritrary scaling, when + an image would be smaller than an inch squared the PPI is scaled down to + either the images width or height. This makes the extracted WMF match + the size of competitor office suites and fix the blur bug without + breaking past tests. + + Change-Id: I11eab879848d9308f818708a91fd9eb91fc65200 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141533 + Tested-by: Jenkins + Tested-by: Tomaž Vajngerl + Reviewed-by: Tomaž Vajngerl + (cherry picked from commit a03a47bb0791d88fedb2650bca412c28469b0b27) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141775 + Reviewed-by: Christian Lohmaier + (cherry picked from commit df11fc4994e73f676fae317e8fc278dceef0e7d3) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141842 + Reviewed-by: Xisco Fauli + Tested-by: Christian Lohmaier + +2022-10-27 Christian Lohmaier [52b7aa87db07c56885efc57d6f7f4d2ea9677ec1] + + tdf#151073 - enable firebird for appstore build w/o experimental mode + + also don't default to hsqldb as embedded database when a build is done + without java support. Mainly to hide an UI bug - apparently the dialog + should show a non-supported message for known embedded drivers + at least that is what 04d1e80ac7091ec2bf31c8617e832d5fe15350be suggests + " + // this indicates it's really a type which is known in general, but not supported on the current platform + // show a message saying so + // eSpecialMessage = smUnsupportedType; + insertDatasourceTypeEntryData( m_eCurrentSelection, sDisplayName ); + // remember this type so we can show the special message again if the user selects this + // type again (without changing the data source) + m_eNotSupportedKnownType = m_pCollection->determineType( m_eCurrentSelection ); + " + but that doesn't work, at least not anymore. m_eNotSupportedKnownType was + since removed, no attempts are made in showing an error/warning message + returning the hsqldb driver results in an empty (no display string) + entry as the default element in the dropdown in the dialog, that still + allows to create a database file (but of course one that you cannot add + any actual database tables to) without any error message. At the very + least it is inconsistent with the rest of the dialog's code that clears + the input name for stuff that shouldn't be shown. + + Change-Id: I8419888018be2a556c49d32e40f02c0ac1801930 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141631 + Tested-by: Jenkins + Reviewed-by: Christian Lohmaier + (cherry picked from commit d0a20b67ae7ee1691409b4a1665853a182c46b7b) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141704 + Reviewed-by: Xisco Fauli + (cherry picked from commit 9eb10478a18259d3ba47d5fc74395887f7a4f9d5) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141843 + Tested-by: Christian Lohmaier + +2022-10-27 Christian Lohmaier [6cc6cf587b578cca011b9cec23a7e967eddbd4a6] + + build appstore packages with symbols/add targets to merge into universal build + + while there is no builtin support to create a fat binary during the + actual build phase, we have a post-processing script that can merge two + separately built architectures into an universal binary one. + Thus enhance the makefile to support a more convenient way to build the + two archs without the need to manually move the package out of the way + to build the other arch. + + 1) assemble one architecture's package via + "make mac-app-store-package.prepare" + 2) make clean and change targets in autogen.input to build for the other + architecture + 3) build the other architecture and combine into universal binary and + also package into the final deliverable via + make mac-app-store-package.universal + + (of course you can also use the .prepare target separately also in the + second build, and just mac-app-store-package will build the deliverable + for the current architecture like it did before) + + Change-Id: I02c14e9b8c4f6e39d0d50cd3b4ffdd060b2d69bd + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141557 + Tested-by: Jenkins + Reviewed-by: Christian Lohmaier + (cherry picked from commit d5c11ddae9e54668f5d8997f4c37dd542e656d4f) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141702 + (cherry picked from commit 28481066174a6673e997b325ca02f2bbd21e967b) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141914 + Tested-by: Christian Lohmaier + +2022-10-27 Christian Lohmaier [c1a12399a00c0ab9e3bd5b16c65dd7d45ebe67bf] + + macOS sandbox: only use com.apple.application-identifier for main package + + when multiple files are signed with that entitlement, the build will + just be listed with "Not Available for Testing" via Testflight + + Change-Id: I92957f24513ab419ddbc4289b53175932111c198 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141497 + Tested-by: Jenkins + Reviewed-by: Christian Lohmaier + (cherry picked from commit 6e6c6f697b019348161648d9d26398bf64de83ef) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141700 + (cherry picked from commit 9c8c71b08317c0a1cb15cb35e7184db9b4501122) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141853 + Tested-by: Christian Lohmaier + +2022-10-27 Christian Lohmaier [0a69326aadce5881ea774b33081b77b51f6b5d6b] + + macOS: add XCode and SDK buildversions to Info.plist + + without those submitting a build for external testing via testflight is + not possible because appstore thinks you were using a beta version of XCode + + Change-Id: I6979a9d290c3e67dd9969d6e535625760b639c25 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141496 + Tested-by: Jenkins + Reviewed-by: Christian Lohmaier + (cherry picked from commit 3336cb1b3d12e9cd5c2f560c82129dc8ed7527da) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141698 + Reviewed-by: Caolán McNamara + (cherry picked from commit 9328e304c55684911b97f4e4fa3dab2fd1eb7f0f) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141713 + Reviewed-by: Michael Stahl + Tested-by: Christian Lohmaier + +2022-10-27 Christian Lohmaier [b994a9c78a5854d6ab5f5df9a82b383abf8613e7] + + update credits + + Change-Id: I4862f568d9025e321a14291aae5617ab2a474862 + (cherry picked from commit d5f25f2f78d3852967a6919e215308d129880cf1) + (cherry picked from commit e1ad83ddb2f39419fb5d7c69eba51e2b9f49c788) + +2022-10-27 Christian Lohmaier [e961b2561d2d527cb9fbcbec83480e51f0701f8f] + + Update git submodules + + * Update translations from branch 'libreoffice-7-3-7' + to 2060c9f41a942d6e5267c3ebe9c1f704d922bf9d + - update translations for 7.3.7 rc2 + + and force-fix errors using pocheck + + Change-Id: I276f47c878e512875a5bd5ad9032a8045d81591d + (cherry picked from commit dba896139fa83cbd594104211e7f22a0f2a59115) + +2022-10-27 Taichi Haradaguchi <20001722@ymail.ne.jp> [7c5ff3dcaa90b0497f9fd2bcb00d783dd7006999] + + Python3: update to 3.8.15 + + * Fixes CVE-2022-40674 + * Removed 0001-3.6-bpo-17239-Disable-external-entities-in-SAX-parse.patch.1 as fixed upstream + + Change-Id: I8e71f9a6b013ca4c45bf8774b284be98eee71bab + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141746 + Tested-by: Jenkins + Reviewed-by: Christian Lohmaier + (cherry picked from commit 418d0c88fc56c5e2ef1bfa774b89c440a024fda2) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141835 + Reviewed-by: Xisco Fauli + Tested-by: Christian Lohmaier + +2022-10-27 Michael Stahl [3e6e2df433b6aad5ff60a3ea15c06d36a9469907] + + curl: upgrade to release 7.86.0 + + Fixes CVE-2022-32221 which could affect libcmis, CVE-2022-42915, + and 2 more CVEs that probably don't affect LO. + + * remove --without-ssl: + On the one hand, on GNU/Linux this now results in: + + configure: error: --without-ssl has been set together with an explicit option to use an ssl library + + On the other hand, using the more obvious --without-openssl yields a link + failure on Android on the nss check in configure: + + configure:28220: checking for SSL_VersionRangeSet in -lnss + /home/cl/Android/Sdk/ndk/20.1.5948944/toolchains/llvm/prebuilt/linux-x86_64/bin/../lib/gcc/aarch64-linux-android/4.9.x/../../../../aarch64-linux-android/bin/ld: warning: liblog.so, needed by /home/cl/rpmbuild/BUILD/lo-android2/workdir/UnpackedTarball/nss/dist/out/lib/libnss3.so, not found (try using -rpath or -rpath-link) + /home/cl/rpmbuild/BUILD/lo-android2/workdir/UnpackedTarball/nss/dist/out/lib/libnspr4.so: undefined reference to `__android_log_write' + /home/cl/rpmbuild/BUILD/lo-android2/workdir/UnpackedTarball/nss/dist/out/lib/libnspr4.so: undefined reference to `__android_log_assert' + + ... so add the -llog for android in curl-nss.patch.1 + + Change-Id: I3931a1eec2d681c2ce0e5695039492772e9fcc81 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141866 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit a76a88203d8508f38b10d9bbb94c3bba2485fcaf) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141879 + Reviewed-by: Xisco Fauli + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141896 + Tested-by: Christian Lohmaier + Reviewed-by: Christian Lohmaier + +2022-10-27 Michael Stahl [1adc5db963b17f0160f46971daf08f558b6a04ff] + + ucb: FTP UCP: report CURLE_URL_MALFORMAT as IllegalIdentifierException + + With curl 7.86, the test JunitTest_ucb_complex starts to fail: + + .ftp://noname:nopasswd@*nohost.invalid + now executing open + com.sun.star.ucb.InteractiveAugmentedIOException: + at com.sun.proxy.$Proxy15.execute(Unknown Source) + at complex.ucb.UCB.executeCommand(UCB.java:63) + at complex.ucb.UCB.checkWrongFtpConnection(UCB.java:119) + + because curl_easy_perform() now returns CURLE_URL_MALFORMAT where + previously it was CURLE_COULDNT_RESOLVE_HOST. + + Map this to an exception the test expects. + + Change-Id: Ifdb672946726ddb4cb4d9426b7e70eefac63f040 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141877 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit 022e476af44c0dfc97403dc0f3a3b63e731903e6) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141845 + Reviewed-by: Xisco Fauli + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141895 + Reviewed-by: Christian Lohmaier + Tested-by: Christian Lohmaier + +2022-10-25 Taichi Haradaguchi <20001722@ymail.ne.jp> [f8ec9ccd03dfd9ef42ac933785f40e6e75338eb5] + + zlib: upgrade to release 1.2.13 + + Fixes CVE-2022-37434 + + Removed two patches as fixed upstream. + + Change-Id: I10465b7eafc4952cf8dc64e6d7a77f5e5255a386 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141757 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit b2d6ad64473527f88dfb7088376ccf1242d97666) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141751 + Reviewed-by: Michael Stahl + (cherry picked from commit 3a7e7f4d1363e0302cd8eed24a665a6666ac11a0) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141752 + Reviewed-by: Xisco Fauli + Tested-by: Christian Lohmaier + Reviewed-by: Christian Lohmaier + +2022-10-25 Michael Stahl [cb218dd33c17b67129e9e6ec23ca93babdcd4029] + + libxml2: upgrade to release 2.10.3 + + Fixes CVE-2022-40304 and CVE-2022-40303. + + Change-Id: I5be3fd20ccf57596808a26b742aca325ac16f29b + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141448 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit 39b5701976ff3d489c3212d6e2a116d6244c8ad1) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141466 + Reviewed-by: Xisco Fauli + (cherry picked from commit a186ba553492c312bf5c1f72bbc840d12d81c3ef) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141403 + Reviewed-by: Eike Rathke + Tested-by: Christian Lohmaier + Reviewed-by: Christian Lohmaier + +2022-10-24 Eike Rathke [15f5a11c2ada480e6a1ff67fb7e9a8c977824800] + + Resolves: tdf#150780 Overtyping is not editing + + Change-Id: Ie83245479e4f356cf120dae1da39d35a9bb1a2e3 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141676 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 9d1d668a608cc5b406601c2f7f3d8581e8f47d1c) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141695 + Reviewed-by: Michael Stahl + Reviewed-by: Caolán McNamara + Tested-by: Xisco Fauli + Reviewed-by: Xisco Fauli + +2022-10-13 Christian Lohmaier [7a49db92d8ff07777930c9e5a978e9f7d59282bc] + + bump product version to 7.3.7.1.0+ + + Change-Id: I3717e1039e3f5347fe9337bb4be72469c5ad9f62 + +2022-10-13 Christian Lohmaier [d4dc78ab675aba3edd75b7f04afcceb9ab1b8a95] + + Branch libreoffice-7-3-7 + + This is 'libreoffice-7-3-7' - the stable branch for the 7.3.7 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-10-13 Christian Lohmaier [f57305cc812104cec04470de0c645bc61e5c2e84] + + Update git submodules + + * Update translations from branch 'libreoffice-7-3' + to 82306532111e85d2e8a5598e9f5abc411db46b1f + - update translations for 7.3.7 rc1 + + and force-fix errors using pocheck + + Change-Id: I4a79aa2cc054a27a8f7fabc745043d870565602d + +2022-10-12 Caolán McNamara [93ed0bc5ffbf48367923b42ecf9d4913f20d9460] + + vml whitespace-check mangled Částečně to ste n + + Change-Id: Ib77ca39a5e17c7fb27c8d5204120fb261b885f16 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141185 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + (cherry picked from commit eac884bc84327621498ca2fb9a2a3d67d49d5c91) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141189 + +2022-10-10 Caolán McNamara [c69b3cec33267db9bd6e71ddb2f38e57bc1ceff1] + + Resolves: tdf#151441 queries don't show any content + + Change-Id: I66ec14c7cb8816bc2181cc25f7d7f31fdc7d1604 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141068 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2022-10-10 Xisco Fauli [e155c38e75dff41d7e80ade3c7aa9e8e69572ad4] + + cui: avoid divide by zero in SvxNumberingPreview::Paint + + Just check for pActNum->GetLevelCount() > 1 as done later for nYStep + + See https://crashreport.libreoffice.org/stats/signature/SvxNumberingPreview::Paint(OutputDevice%20&,tools::Rectangle%20const%20&) + + Change-Id: I0e9518dafe50b2b10a83487e9247e2fd46f9decd + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140888 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit f171d9af9bb13ec037841d7c8aa11fcc628c303c) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141056 + Reviewed-by: Xisco Fauli + +2022-10-09 Caolán McNamara [49f5b1a2750ec8f20d983c91ee99cb056a536901] + + tdf#98067 get menu readable in windows high contrast mode + + possibly a problem since: + + commit 9c5a22d19708eae17ad9880422bd03e81ea48c5d + Date: Thu Jun 21 17:55:53 2012 +0200 + + aero toolbar: Extend the drawing of the toolbar to the menubar area. + + Change-Id: If76be9bf09a19992dafedf16d7e577acf1bc500d + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141054 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + (cherry picked from commit 6bd8ff51dd33e14d3e411630c8366a26e9550e77) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141057 + +2022-10-07 Caolán McNamara [617b902fed3cb65f66bafd6868befd08067e1feb] + + tdf#150622 sidebar icons empty in High Contrast mode + + Change-Id: Icfa78f0f655ee467c62cbc309b8e57ac310a73e7 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140970 + Reviewed-by: Michael Stahl + Tested-by: Jenkins + +2022-10-06 Caolán McNamara [4cad7711c35091e90515c446b4cae43c07ab4d90] + + Resolves: tdf#149277 we don't want to search the whole tree for dups + + just the immediate children of the supplied parent node + + Change-Id: I79595fd940257615f0d012cb9a4556aea51d7db9 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140964 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2022-10-05 Xisco Fauli [722a3892d4545738aac9ebfdfe8d28ffe4a2543b] + + update credits + + Change-Id: I101b0ffc043adae377c6ae4ef8741c015e5433d3 + Signed-off-by: Xisco Fauli + +2022-10-05 Caolán McNamara [713b19bde2dcd0a65e04bb99681e35cbfd2f25e9] + + tdf#151316 recalc what dependencies should be sensitive + + Change-Id: I40f78ec151c3d5901209b8587f6152ab76d04e88 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140960 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + (cherry picked from commit 17612ee10f89a6bf5447a324a02eb0a73d7b27e1) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140961 + +2022-10-05 László Németh [26e323976cc29b549eeb3c0f586e007045a3206e] + + tdf#138625 DOCX import: fix superscript footnote numbering in l10n + + Footnote/endnote numbers in the footnote area didn't get + superscript etc. formatting in non-English locale + settings because of the writerfilter mapping to + the English localization ("Footnote Characters" and + "Endnote Characters") instead of the correct + programmatic character style names ("Footnote Symbol" + and "Endnote Symbol") according to + SwStyleNameMapper::GetChrFormatProgNameArray(). + + Testing: unit test of tdf#82173. Manual: e.g. open test + document of tdf#138625 in an Italian build, after setting + Italian locale in it in Tools->Options...->Language Settings-> + Languages->Language of user interface. + + Follow-up to commit 707eb4db1918658e0c2c2c2033c6a69f80c4eafd + "tdf#82173 writerfilter: charStyle XnoteReference->Xnote Characters". + + Change-Id: I36b3c5ff065e9f80289d051e27f618b40e0c9355 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140918 + Tested-by: László Németh + Reviewed-by: László Németh + (cherry picked from commit 5a1c668747f3495ddc7567ae95f2145663565647) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140891 + Reviewed-by: Michael Stahl + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2022-10-05 Kevin Suo [ddd45141f5d20dcba22a379797be62eab7b93d73] + + Templates: Make localized names for "Simple" and "BPMN" show on the UI + + Currently there are 32 localized template name strings defined in: + include/sfx2/strings.hrc. However, in sfx2/source/doc/doctempl.cxx + only 30 were used. This makes STR_TEMPLATE_NAME31 ("Simple") and + STR_TEMPLATE_NAME32 ("BPMN"), although already localized, not show up + on the Template Manager UI. + + This patch adds these two strings in the sfx2/source/doc/doctempl.cxx, + so that they properly show as localized strings on the UI. + + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140785 + Tested-by: Jenkins + Reviewed-by: Rafael Lima + Reviewed-by: Laurent Balland + (cherry picked from commit 244063d03117119d048376c84e22cf47c4abd250) + + Conflicts: + sfx2/source/doc/doctempl.cxx + + Change-Id: I64bb28cfe0a4d3b4b41c9114de7223014f6a3cfe + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140945 + Tested-by: Jenkins + Reviewed-by: Adolfo Jayme Barrientos + +2022-10-04 Bjoern Michaelsen [84fde6fb3151aae8506fc66554a4fa2983127e87] + + tdf#144939: fix chapter numbering updates + + Change-Id: Icd29a380663a1c5f70e3a8ee86db64ec4eae8d86 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140558 + Tested-by: Jenkins + Reviewed-by: Bjoern Michaelsen + (cherry picked from commit 2aed71fa9e8a36ff2dc9f48897092c26ab89ea9e) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140594 + Reviewed-by: Michael Stahl + (cherry picked from commit cb43334ee9938d7b8e250f9ddbdc81e53779f8d0) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140883 + Reviewed-by: Caolán McNamara + +2022-10-04 Xisco Fauli [2fd53f90ae83a978a3f5e715d5e790fa1b4add00] + + sw: fix crash in SwParagraphNumTabPage::ExecuteEditNumStyle_Impl + + SfxViewShell::Current() could be nullptr + + See https://crashreport.libreoffice.org/stats/signature/SfxShell::GetDispatcher() + + Change-Id: Ic2ffc2a35eff8b8acbb896ece198916ee074b019 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140889 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit cf15a1fc143536c20c81faab5950ab829ec8df19) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140892 + +2022-10-03 Miklos Vajna [d259d6c400f9ba4162790a4823735efeb1b66d06] + + vcl: fix crash in SalInstanceWidget::set_busy_cursor() + + Crashreport signature: + + Fatal signal received: SIGSEGV code: 128 for address: 0x0 + + program/libmergedlo.so + vcl::Window::LeaveWait() + vcl/source/window/mouse.cxx:640 + program/libsclo.so + ScSpellingEngine::ShowTableWrapDialog() + sc/source/ui/view/spelleng.cxx:315 + program/libsclo.so + ScConversionEngineBase::FindNextConversionCell() + sc/source/ui/view/spelleng.cxx:168 + program/libsclo.so + ScSpellDialogChildWindow::GetNextWrongSentence(bool) + /opt/rh/devtoolset-10/root/usr/include/c++/10/bits/unique_ptr.h:173 + + Change-Id: I298789211d6ee038bd5a9a7bff7cf9ae4f132a91 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139731 + Reviewed-by: Miklos Vajna + Tested-by: Jenkins + (cherry picked from commit 37d778b601966434ff6042373c1a82d4687fd034) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140762 + Reviewed-by: Caolán McNamara + +2022-10-03 László Németh [1662a9bc131d4624a34db4f71953cfb1ecda4f69] + + LibreLogo: fix ast, gug, hsb and sid language support + + Asturian (ast), Paraguayan Guaraní (gug), Sidamo (sid) + and Upper-Sorbian (hsb) localizations did't work despite + their existing localization stored in the language fallback + dictionary of LibreLogo.py, because their 3-letter language + identifiers with their country codes trimmed to 2-letter, + for example: "hsb-DE" -> "hs" instead of the correct "hsb". + + Missing Upper-Sorbian support was reported by Michael Wolf. + + Change-Id: I57aa6752d05452d1f8bb95ff91f4d4456dffcd80 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140796 + Tested-by: László Németh + Reviewed-by: László Németh + (cherry picked from commit 5948e2e9f032916e3278f904097eff6b47b869d6) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140757 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + +2022-10-02 Miklos Vajna [2f2f39309c33800f6b751062f26b645d4fd9b050] + + cui: fix crash in SpellDialog::SpellContinue_Impl + + Crashreport signature: + + Fatal signal received: SIGSEGV code: 128 for address: 0x0 + program/libcuilo.so + svx::SpellDialog::GetNextSentence_Impl(std::unique_ptr >*, bool, bool) + include/com/sun/star/uno/Reference.hxx:114 + program/libcuilo.so + svx::SpellDialog::SpellContinue_Impl(std::unique_ptr >*, bool, bool) + cui/source/dialogs/SpellDialog.cxx:355 + program/libcuilo.so + svx::SpellDialog::ChangeHdl(weld::Button&) + include/rtl/ustring.hxx:527 + program/libmergedlo.so + Control::ImplCallEventListenersAndHandler(VclEventId, std::function const&) + include/rtl/ref.hxx:208 + program/libmergedlo.so + Button::Click() + /opt/rh/devtoolset-10/root/usr/include/c++/10/bits/std_function.h:244 + + Change-Id: I2c7267118213ea7d915a28d77badf93f8ff75683 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140586 + Tested-by: Jenkins CollaboraOffice + Reviewed-by: Miklos Vajna + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140689 + Tested-by: Jenkins + (cherry picked from commit 9be24f694d42fc9cae55ed911e0dff7f729803f1) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140611 + Reviewed-by: Caolán McNamara + (cherry picked from commit ae1f8a426338770f0dd46c72553c405158415e65) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140761 + +2022-09-26 Noel Grandin [a288453c50f49852c2a83cc4716ec44d6230d37c] + + tdf#151148 Finding KATAKANA which has voice consonant mark wrong + + regression from + commit c7551e8a46e2f9f8142aa7921a0494221ae096e8 + Author: Noel Grandin + Date: Thu Sep 16 10:36:48 2021 +0200 + speedup CharacterClassificationImpl::toUpper + + Change-Id: I0309dec3d08220b9616be185360013869598fa1c + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140541 + Tested-by: Jenkins + Reviewed-by: Noel Grandin + (cherry picked from commit 222e56157c6317435088e09e52a0705bc6a1a83a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140508 + Reviewed-by: Xisco Fauli + (cherry picked from commit a5b6ddf3f0055cebe2713af34c304a647af6c76a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140600 + +2022-09-26 Luboš Luňák [66ebf61975a5d8d860eda5e661c5a82a9ca763b7] + + make sure SharedString::EMPTY_STRING is interned in pools (tdf#150647) + + Without this, it may not actually be there, so interning "" would + use a different string instance, and then comparing with + SharedString::getEmptyString() would actually compare non-equal. + + Change-Id: I22660f63aa321e3a8f72cfb96df1db56e08fbb84 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140402 + Tested-by: Jenkins + Reviewed-by: Eike Rathke + (cherry picked from commit e47e0cb0ad1dc3554e9b57f8562a217cf785edbf) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140498 + Reviewed-by: Xisco Fauli + +2022-09-23 Taichi Haradaguchi <20001722@ymail.ne.jp> [c11fb34ac4e8fefa23c0b7021f89edf768b8984b] + + postgresql: upgrade to release 13.8 + + * Fixes 2 CVEs that don't affect LO (CVE-2022-1552 and CVE-2022-2625). + * Changes some patch files for upstream changes. + + Change-Id: I4964c43fefc94f12a16c45d8727ae41cf1ce278b + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140392 + Reviewed-by: Xisco Fauli + Tested-by: Xisco Fauli + (cherry picked from commit cb301d1b98dbfb3fa732082146be04091a8374b8) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140499 + Tested-by: Jenkins + +2022-09-23 Taichi Haradaguchi <20001722@ymail.ne.jp> [711730297dc45a022da223b215bbb80a640c4d51] + + curl: upgrade to release 7.85.0 + + Fixes CVE-2022-35252 + + Change-Id: I549240f6ae31ae94f925422517cd03ef2e3b5732 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140494 + Reviewed-by: Michael Stahl + Tested-by: Jenkins + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140496 + +2022-09-23 Michael Stahl [3a93fa4dc13f4d85e12b8ab9c0c409d2be9c6aa6] + + curl: remove curl-7.26.0_win-proxy.patch + + There is no justification why this patch was added, upstream doesn't + want to add such a feature[1], and maintaining feature patches in LO + for bundled externals doesn't make sense. + + Also, this doesn't respect the Inet::Settings::ooInetHTTPProxy* + settings from the configuration. + + Let's remove it and hope nobody complains. + + [1] https://curl.se/mail/lib-2022-05/0083.html + + Change-Id: I1ccdefb76f69e6795a28d4d25bf443555c16ab0b + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135182 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140485 + +2022-09-23 Taichi Haradaguchi <20001722@ymail.ne.jp> [c0116cc48eaaf863a2c12b4f7c1a49d6d3a4c81c] + + nss: update to release 3.83 + + Change-Id: Ic1cb36b3a56cde40296fd46ef356dea286932692 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140231 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140305 + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140474 + Reviewed-by: Michael Stahl + +2022-09-23 Taichi Haradaguchi <20001722@ymail.ne.jp> [de321de54522bbd451404d5e87d6cd2a052c0aca] + + upgrade libepoxy to 1.5.10 + + removed epoxy.android.patch: fixed upstream + (https://github.com/anholt/libepoxy/pull/263/commits/063c1df27974f58b0f3c0a57417732da068923cf) + + Change-Id: If0c6c438014121bc480efeaeb1018b6b74e51fcc + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140359 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140477 + +2022-09-23 Taichi Haradaguchi <20001722@ymail.ne.jp> [50a79cc175852f1058f454b0662dc79ed3a818d0] + + libpng: update to release 1.6.38 + + Change-Id: Ife594699cc8736ffdfc8f68e462d11416d7930e9 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140311 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit 18f4fc547a8c055afdaec4aad69c9fea387696c3) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140377 + Reviewed-by: Xisco Fauli + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140476 + +2022-09-23 Eike Rathke [6801744b29c0b4949af760fe9ba3eb86d997d33c] + + Fix string length assertion and handle parentheses in multi-line formula + + soffice.bin: include/rtl/ustring.hxx:842: sal_Unicode rtl::OUString::operator[](sal_Int32) const: Assert ion `index >= 0 && static_cast(index) < static_cast(getLength())' failed. + + when editing a paragraph (line) longer than the first, because the + string was always obtained from the first paragraph but the + position from the current selection. + + Also match parentheses in the current paragraph, not somewhere + else in the first paragraph.. still we're matching only within one + paragraph. + + Change-Id: I955fd371c1e248ce58735a5b61603bbce6c997db + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140446 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 10d1e6ff6b3a10b673696524ad59297f4e5a1c2c) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140388 + Reviewed-by: Michael Stahl + +2022-09-22 Mike Kaganski [d194474aabd699806cb3631bc8641dd0548b8026] + + tdf#151100: xText->getString() may be empty for content needing export + + The check that is removed prevents collecting the table data. + Assume that it's the performance optimization, and that processing + empty text objects would be fast anyway. + + This basically reverts commit 73fcb052edf1a21d785583bc53e8b4323b577bb1 + Author Christian Lippka + Date Thu Nov 22 12:26:35 2001 +0000 + #90330# only export text autostyles for shapes with text + + and commit 7661bbbaef31adfdb298b1447301b24a70f85834 + Author Michael Stahl + Date Fri Nov 25 22:46:34 2016 +0100 + tdf#102479 ODF export: ignore exceptions when checking shape text + + that becomes unnecessary after the former change is reverted. + + Change-Id: I709a7b4c5ac1cc0621d3a1b18f2eb74feb987efb + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140313 + Tested-by: Mike Kaganski + Reviewed-by: Mike Kaganski + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140352 + Tested-by: Jenkins + (cherry picked from commit 226b1c2006e936e4b32748b810624c5d655c4a98) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140378 + Reviewed-by: Michael Stahl + +2022-09-21 Taichi Haradaguchi <20001722@ymail.ne.jp> [84210c97d3d41f50f82d1b0747020283c844c808] + + update expat to 2.4.9 + + Fixes CVE-2022-40674 + (https://github.com/libexpat/libexpat/blob/R_2_4_9/expat/Changes) + + Change-Id: I459cf5f5de31e7cf5420d3df6b11893d5c4ca4dd + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140314 + Reviewed-by: Michael Stahl + Tested-by: Jenkins + +2022-09-20 Julien Nabet [d0c6b4f7a326fc1d3177f88cde4431e56cae2e66] + + tdf#150992: fix crash popart filter to an SVG image + + part of bt: + 6 0x00007f018c80186f in BitmapPalette::operator[](unsigned short) const (this=0x5576a198fe48, nIndex=176) at vcl/source/bitmap/bitmappalette.cxx:139 + 7 0x00007f018c3d1fce in BitmapInfoAccess::GetPaletteColor(unsigned short) const (this=0x5576a2bbc520, nColor=176) at include/vcl/BitmapInfoAccess.hxx:121 + 8 0x00007f018c85b63f in BitmapPopArtFilter::execute(BitmapEx const&) const (this=0x7fffb7394728, rBitmapEx=...) at vcl/source/bitmap/BitmapPopArtFilter.cxx:73 + 9 0x00007f018c83e66b in BitmapFilter::Filter(BitmapEx&, BitmapFilter const&) (rBmpEx=..., rFilter=...) at vcl/source/bitmap/bitmapfilter.cxx:22 + 10 0x00007f01905e5bd4 in SvxGraphicFilter::ExecuteGrfFilterSlot(SfxRequest const&, GraphicObject&) (rReq=..., rFilterObject=...) at svx/source/dialog/grfflt.cxx:202 + + some gdb info + (gdb) p nIndex + $1 = 176 + (gdb) p mpImpl->GetBitmapData().size() + $2 = 34 + + full bt here: + https://bugs.documentfoundation.org/attachment.cgi?id=182499 + + See https://bugs.documentfoundation.org/show_bug.cgi?id=150992#c2 for some comments + + the main thing that makes me think that the order is reversed is the "nLastEntry" treatment. + Indeed with the current sort, mnCount with 0 come first nLastEntry = nEntryCount - 1 (unless there's no color at all) + + Change-Id: I3b89f2f4d6f115ea9f6752c49bad776a33f0b020 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140153 + Reviewed-by: Julien Nabet + (cherry picked from commit 8dbbc1ca6dfe75affe13dda92bdf82b6b38f1a37) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140160 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit 2c7052a76e5348981883ca95cf3c0b079ded5068) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140165 + Reviewed-by: Noel Grandin + +2022-09-20 László Németh [139e95a317441867e8ca564aea36a47061ec8765] + + tdf#147507 sw: fix crash with Reject All around not content nodes + + Regression from commit f3bec764ddbf3fd3ae986f034c89626bf22940e0 + "tdf144058 sw track changes: fix table deletion at paragraph join". + + Conflicts: + sw/source/core/doc/docredln.cxx + + (chrery-picked from commit 7462f728df54c28cea659dbf9aa92070019b489f) + + Change-Id: If08a2b85c3db9fe92ad623d3d7cb30f2feaaab36 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140159 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2022-09-19 Xisco Fauli [3a457df72a832ee19d6c9b6da01aa88e83e203af] + + writerfilter: avoid divide by zero + + in DomainMapperTableManager::endOfRowAction() + + See https://crashreport.libreoffice.org/stats/signature/writerfilter::dmapper::DomainMapperTableManager::endOfRowAction() - similiar to + Probably since 116cadb5d2582532c69677a2f8499e8e9b7b9b80 + "tdf#59274 DOCX import: fix tables with incomplete grid" - commit b3edf85e0fe6ca03dc26e1bf531be82193bc9627 - Date: Wed Aug 7 17:37:11 2019 +0100 + Change-Id: I12f2842107885fbbc62be2186511102f642e3efc + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139657 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit b69a37e567a6a0b6c24a4438a0da906497c750f0) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139660 + +2022-09-19 Xisco Fauli [49cdadd5878da393dc640a8f7ec75b98cb2e0147] + + sw: avoid divide by zero in SwDoc::AdjustCellWidth - warn on load when a document binds an event to a macro + See https://crashreport.libreoffice.org/stats/signature/SwDoc::AdjustCellWidth(SwCursor%20const%20&,bool,bool) - Change-Id: Iea888b1c083d2dc69ec322309ac9ae8c5e5eb315 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139059 + Change-Id: I98b90dcbed6b6f3ea0a7d1668a5c248f39e7a2a5 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139658 + Reviewed-by: Miklos Vajna + Tested-by: Jenkins + (cherry picked from commit b884772e4aa3d6f438c8a74f3a15250530830162) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139661 + Reviewed-by: Caolán McNamara + +2022-09-19 Michael Weghorn [fe012a9a3ff16db3e90165cbc2fa226d925166ee] + + tdf#137341 gtk: Set missing style text colors from theme + + commit 8d11b953c0a69f4f5eb5ca42dec3812a62d0cd0f + Date: Sun Feb 23 21:11:05 2020 +0100 + + tdf#125532: White text on default/action buttons and selected tabs on macOS + + had introduced various new text colors to the style + settings, but some were not set from the theme for gtk. + + Add the missing ones. + + Change-Id: I1bd7ce358626b3f4ff1d6f2794d5c0f19f78a668 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140058 + Tested-by: Jenkins + Reviewed-by: Michael Weghorn + (cherry picked from commit 8306152d5205dd35c118d06368f6c77254f87518) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139984 + Reviewed-by: Adolfo Jayme Barrientos + (cherry picked from commit 2103178720fd485651b94b7819ea33ec602c3b79) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140156 + Reviewed-by: Xisco Fauli + +2022-09-19 Taichi Haradaguchi <20001722@ymail.ne.jp> [64b7f2b2fd45eaba07305f5a3464c81cc5a2a9c2] + + upgrade expat to 2.4.8 + + Change-Id: I4dea32ad24e9a6c24f69c75fea75dbd63c14c91b + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139920 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit c228803662d1d892405bf6431c4d5bd8dc22f7f6) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139980 + +2022-09-19 Noel Grandin [8b3d4b35b248c2f52e2bd9d3e77e6d9ce4927daa] + + tdf#150987 calc crash pasting content + + regression from + + commit d0119ff7f2c68aa05286bd303128f3a69c6bbd6a + improve tools::Rectangle->basegfx::B2?Rectangle conversion + + which resulted in Fraction throwing an exception because of + divide-by-zero + + Change-Id: I90a92a644c5fb40e9b93237c79f6760d4bb73d0f + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/140064 + Tested-by: Jenkins + Reviewed-by: Noel Grandin + (cherry picked from commit ab5928517639e49dbcab2c2de195849d611124b9) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139991 + Reviewed-by: Xisco Fauli + +2022-09-15 Xisco Fauli [b255482d09badf150092073dbf8dd98547dbf06c] + + Remove the now unused python test + + after 451a7e64fc1294f6ec089a5291ce03a0fc47361e + "tdf#148620: sd: move UITest to CppUnittest" + because the cherry-pick command didn't remove it + in master, the test is in + sd/qa/uitest/impress_tests2/tdf148620.py while in previous + branches it's in + sd/qa/uitest/impress_tests/tdf148620.py + + Change-Id: I49f9c74d4f147415b1b0e8b557966e5ec1fe6782 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139976 + Tested-by: Jenkins + Reviewed-by: Xisco Fauli + +2022-09-15 Xisco Fauli [8c30176eda022673c446917e4de2562f8fa7058a] + + tdf#148620: sd: move UITest to CppUnittest + + hopefully this will fix the sporadic failures of + UITest_impress_tests2 in Jenkins + + Change-Id: I3df2484b07a0cf7a0efdafb7235c3ff83f187200 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139928 + Tested-by: Xisco Fauli + Reviewed-by: Xisco Fauli + (cherry picked from commit 657d6e1698136813d852b920f099c11d94144a4d) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139846 + Tested-by: Jenkins + (cherry picked from commit 451a7e64fc1294f6ec089a5291ce03a0fc47361e) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139851 + +2022-09-15 Michael Stahl [bdbb450ed0ded86fb50d6b19a2cce0f11ca74b07] + + poppler: upgrade to release 22.09.0 + + Fixes CVE-2022-38784 + + Add external/poppler/disable-freetype.patch.1 to get rid of some new + code that unconditionally requires freetype, to avoid building that on + WNT/MACOSX. + + Change-Id: I854d1865286b6fb4112cdf37898cda0203c52f2e + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139941 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit 8fce9a0a41b1bbebd325fc9d98a79d8decd3950c) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139967 + Reviewed-by: Thorsten Behrens + Reviewed-by: Noel Grandin + +2022-09-15 Caolán McNamara [486a1004982b4072b488e8c42a7e09afd8043c2e] + + upgrade poppler to 22.01.0 + + and popppler-data to 0.4.11 + + Change-Id: Ibd8c28f36408a670b5853f1b266c6b8c36916a61 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128398 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit 9dbfda4cea569459e42203771754b902c1a09759) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139966 + Reviewed-by: Michael Stahl + Tested-by: Noel Grandin + Reviewed-by: Noel Grandin + +2022-09-15 Michael Stahl [52fd3fa8644b9ffb1e42dcef4c34cf48ba78bb20] + + libxml2: upgrade to release 2.10.2 + + Fixes CVE-2022-2309 + + Change-Id: I180218be275d3b6d38f8f74aa51c57e50d2734ee + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139911 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit d621a8839cebf96fe3ac374026f344f8e68bf011) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139954 + Reviewed-by: Thorsten Behrens + +2022-09-15 Michael Stahl [424d2e86cc103336fb70cd8ef7aacde1ac2e28ef] + + harfbuzz: add patch for CVE-2022-33068 + + Should be fixed in release 4.4.0 + + Change-Id: I9ff234f9687c7f57d9226df91b17ddb0bc083cca + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139952 + Tested-by: Jenkins + Reviewed-by: Miklos Vajna + +2022-09-15 Jan-Marek Glogowski [5c044ae7a3246bddbd0513bd5ed3efef10cb1503] + + libxml2: use xml2-config dummy for internal build + + When building a static LO with --disable-dynloading on Linux, + --without-system-libs failed for me. And it left me really puzzled: + raptor configure failed and claimed it couldn't link libxml2. + + raptor's config.log showed missing math functions. xml2-config of + LO's build is patched and it includes a -lm. The xml2-config in my + chroot doesn't. But we explicitly pass the xml2-config for + non-system-libxml2 build. Reading the configure from raptor didn't + reveal a way, that it could somehow pick up the xml2-config from + the chroot, but that code is autoconf-complex... + + When running "sh -x configure", it turned out the configure script + actually picks up the LIBXML_* flags from the environment, which + are set by LO's config_host.mk. These just add -lm for Android. + + So this adds a xml2-config.in "dummy", which overwrites the one + from the libxml2 source and just echos LO's LIBXML_* values and + it adds -lm for all DISABLE_DYNLOADING targets. + + Change-Id: Ia713cf80c8e7dc989cf23c224e7a0f7ea1210a87 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116409 + Tested-by: Jenkins + Reviewed-by: Jan-Marek Glogowski + (cherry picked from commit 8b9f8f0f9d38cc64f742fe5358fce88d0f82391a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139965 + Reviewed-by: Michael Stahl + +2022-09-15 Mike Kaganski [c43b50bf027def7054bc15187d61d61d9b132bd7] + + tdf#150927: properly handle nesting in tables + + This re-implements the relevant part of commit + 35021cd56b3b4e38035804087f215c80085564be, to follow the same + recursion logic that is used in SwXMLExport::ExportTable. + + Additionally, it found a place where XML was still emitted + when collecting autostyles (breaks were exported); fixed. + + Change-Id: I3b7eed06e0eca9ad20304b45db4c3e9d72478c9b + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139901 + Tested-by: Jenkins + Reviewed-by: Mike Kaganski + (cherry picked from commit 58cb4fc7d17ae5b339c5ed6ae139e6ef2433c927) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139843 + Reviewed-by: Xisco Fauli + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139930 + +2022-09-15 Michael Stahl [832e2a266005d8ef5f9bcc7f51b545d5dc4ce165] + + zlib: add patch for CVE-2022-37434 + + Change-Id: If09c419ba00fc9be021249e4d4da27d1650b9080 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139913 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit 521e920dda79f44a0ad637b6062f3dcb574f884b) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139849 + Reviewed-by: Thorsten Behrens + +2022-09-15 Eike Rathke [32da7faefc6568bf07f27eedaae5488fdf68cb65] + + Resolves: tdf#150926 Add-In result svl::SharedString needs to be interned + + Change-Id: If582e7e1bf818dcf9eaddd5313aa21f5768a578f + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139886 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit a56e5434a4ed453b55b8f060ed18404d77a9fb10) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139842 + Reviewed-by: Mike Kaganski + +2022-09-14 Taichi Haradaguchi <20001722@ymail.ne.jp> [27500239d711ce6e2dfe16acaa74c2dae6660809] + + Python3: upgrade to release 3.8.14 + + Fixes CVE-2020-10735. + + Change-Id: I028bb1fe6154beffdd80c0190c9de40ab8a80c4c + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139747 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + (cherry picked from commit 849601bdec341eaee3cafc46fbe3cf223f06fb7d) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139840 + +2022-09-13 Sam James [89d2ecd6bc71fc6e581cff595b18ae67a13d8b11] + + Fix build with Poppler 22.09.0 + + With Poppler 22.09.0, LO fails to build with: + ``` + /var/tmp/portage/app-office/libreoffice-7.3.5.2/work/libreoffice-7.3.5.2/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx:682:36: error: too many arguments to function call, expected single argument 'start', have 3 arguments + state->getLineDash(&dashArray, &arrayLen, &startOffset); + ~~~~~~~~~~~~~~~~~~ ^~~~~~~~~~~~~~~~~~~~~~~ + /usr/include/poppler/GfxState.h:1506:32: note: 'getLineDash' declared here + const std::vector &getLineDash(double *start) + ^ + 1 error generated. + ``` + + Poppler changed the getLineDash interface: + ``` + - void getLineDash(double **dash, int *length, double *start) + + const std::vector &getLineDash(double *start) + ``` + + Signed-off-by: Sam James + Change-Id: I29e18f20d7650a7fcac1bc8ab4aaa04aaa2ab8fb + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139249 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit b7d63694985bbb1cf86eb71769feadb28ce68c17) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139835 + +2022-09-13 Julien Nabet [a152b1fe7fc3056ff6444321a1cdf8c24b8c8a2f] + + tdf#150575: REPORTBUILDER: Crash when closing report when used report navigator + + 0 0x00007fe062bdda64 in comphelper::OSelectionChangeMultiplexer::disposing(com::sun::star::lang::EventObject const&) (this=0x55fe72b7b680, _rSource=...) at comphelper/source/misc/SelectionMultiplex.cxx:82 + 1 0x00007fdf90a97a6b in comphelper::OInterfaceContainerHelper3::disposeAndClear(com::sun::star::lang::EventObject const&) (this=0x55fe6c94b6d0, rEvt=...) + at include/comphelper/interfacecontainer3.hxx:362 + 2 0x00007fdf90a6ace4 in rptui::OReportController::disposing() (this=0x55fe6c94b200) at reportdesign/source/ui/report/ReportController.cxx:341 + 3 0x00007fe062539b5d in cppu::WeakComponentImplHelperBase::dispose() (this=0x55fe6c94b200) at cppuhelper/source/implbase.cxx:104 + 4 0x00007fe0393b76e5 in cppu::PartialWeakComponentImplHelper::dispose() (this=0x55fe6c94b200) at include/cppuhelper/compbase.hxx:90 + 5 0x00007fe0393af9d3 in dbaui::OGenericUnoController::dispose() (this=0x55fe6c94b200) at dbaccess/source/ui/browser/genericcontroller.cxx:1207 + + See full bt here: + https://bugs.documentfoundation.org/attachment.cgi?id=181994 + + "addSelectionChangeListener" is called when "OSelectionChangeMultiplexer" is instantiated in "NavigatorTree" ctr + 225 m_pSelectionListener = new OSelectionChangeMultiplexer(this,&m_rController); + + but "removeSelectionChangeListener" was never called so add the mechanism to call it. + + Change-Id: I157b147f7a17244dbbfa7d12743fc7d48e7d5f7d + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138773 + Reviewed-by: Julien Nabet + (cherry picked from commit fb8c86d95a7d1c68b6dc0f5bb2e00db2f40f58ab) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138551 + Tested-by: Jenkins + Reviewed-by: Noel Grandin + (cherry picked from commit 41d1e848677891d1451b2120763c7c069006b4a5) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138832 + Reviewed-by: Michael Stahl + +2022-09-12 Eike Rathke [dd51e61b9fcdb0833b89be3aa7dd57a3d9e00c7b] + + Resolves: tdf#150766 Listen to entire shared formula group instead of a slice + + Change-Id: I677602bd3401dbd401e35f7db64cd34d164d9d92 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139744 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 569d451bbe160829947ace201d07ad69442204b0) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139663 + Reviewed-by: Xisco Fauli + +2022-09-09 Christian Lohmaier [d51c1274af20d67be085c3d3ffdcbb0354c1985b] + + update credits + + Change-Id: I2b1e2e53b0688369e9ebc480ab296ace4cdb804b + (cherry picked from commit 69b0c17f1e5d2fd8c7ca0548fb5c5ed8def26ce2) + +2022-09-08 Taichi Haradaguchi <20001722@ymail.ne.jp> [78fdc2b31860f7ac9fe153d49b9eef25adc28530] + + python3: upgrade to release 3.8.13 + + Remove some code in external/python3/darwin.patch.0 as it was fixed upstream(https://bugs.python.org/issue45405). + + Change-Id: Ie6bfb2456f96a63adbf0dbcb9c902dc56f1151ee + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139493 + Tested-by: Jenkins + Tested-by: Caolán McNamara + Reviewed-by: Caolán McNamara + (cherry picked from commit c8fd50f9ec02a131fd4c99e80f7252b49015653a) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139564 + Reviewed-by: Xisco Fauli + +2022-09-07 Caolán McNamara [d0312786571221c2dd4f63fa69f6f0489d7d39ec] + + check impress/calc IFrame "FrameURL" target + + similar to + + commit c7450d0b9d02c64ae3da467d329040787039767e + Date: Tue Aug 30 17:01:08 2022 +0100 + + check IFrame "FrameURL" target + + Change-Id: Ibf28c29acb4476830431d02772f3ecd4b23a6a27 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139495 Tested-by: Jenkins Reviewed-by: Stephan Bergmann - (cherry picked from commit c7450d0b9d02c64ae3da467d329040787039767e) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138989 - Tested-by: Christian Lohmaier - Reviewed-by: Christian Lohmaier -2022-09-02 Stephan Bergmann [8ab71daa8b1c7095a948398b7d029dda27145d70] +2022-09-07 Eike Rathke [b73254d275ceff67e4929f2a11004aa7fca039df] + + Resolves: tdf#150829 Broadcast missing ScAreasChanged hint on sheet copy Undo + + Change-Id: I354b1e395079067cd4cc9299501b3936dea00cd8 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139538 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 922b79a0f5a9151a6870ba395abcac5b54055275) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139512 + Reviewed-by: Xisco Fauli + +2022-09-07 Eike Rathke [607f12bc94228472c6eeb7a42387744e93a23b34] + + Related: tdf#150307 Use SfxHintId::ScAreasChanged, tdf#137577 follow-up + + ... instead of ScTablesRenamed, as ScAreasChanged (confusingly + named) was meant exactly for this and also updates the Navigator. + + Change-Id: I6d90b82e6d5121e69c1a40af369be36544ad1b3b + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139453 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 540a312af2f02108ea90f5d2a9f3bf573db622e5) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139433 + Reviewed-by: Xisco Fauli + +2022-09-06 Taichi Haradaguchi <20001722@ymail.ne.jp> [26c1fd6daed816977f52a225ee761ba0d19baa85] + + upgrade openssl-1.1.1q + + Change-Id: I2317e734f074cf7301a6081cf3d2221beeaf5ad1 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139497 + Tested-by: Jenkins + Reviewed-by: Caolán McNamara + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139498 + +2022-09-06 Olivier Hallot [37a9ae8d605d280fc0fc03093612de541d2d4b77] + + Update git submodules + + * Update helpcontent2 from branch 'libreoffice-7-3' + to 9432ec099dbbb94c79cceefee53550c5b078296a + - tdf#150689 Fix Calc contents tree + + Change-Id: If23ba66db8806ff88e67dc0485c5cf6376ccd0e7 + Reviewed-on: https://gerrit.libreoffice.org/c/help/+/139227 + Tested-by: Jenkins + Reviewed-by: Olivier Hallot + (cherry picked from commit f7e717277963bd80b80a6f4b947e79cc97eea0e2) + Reviewed-on: https://gerrit.libreoffice.org/c/help/+/139181 + Reviewed-by: Rafael Lima + +2022-09-06 Eike Rathke [c36dcb281f6e64d91fcb4dfdc52697da5c666db1] + + Resolves: tdf#150307 Broadcast missing ScAreasChanged hint on sheet deletion + + ... and Undo. + + Change-Id: I59413d5470294c415c51e7d7ada9134f4173c872 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139450 + Reviewed-by: Eike Rathke + Tested-by: Jenkins + (cherry picked from commit 0ff4a77f337237a5cad1d44390ff924af3992ff8) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139432 + Reviewed-by: Caolán McNamara + +2022-09-05 Vasily Melenchuk [f5003b9b1b44a16e28b1c3080d11347e5b365e1e] + + tdf#114769: sw html export: better handling for relative URLs + + Usage of INetURLObject makes sense only in case of full URLs, + but once relative one is provided it will contain invalid data. + + Change-Id: Icc5e191e2337a3dd9a76c660b1c7709551099a1a + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138875 + Tested-by: Jenkins + Reviewed-by: Thorsten Behrens + (cherry picked from commit 599da3fa69805ebf8dee4517855fd8706e19d11d) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138979 + Signed-off-by: Xisco Fauli + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139409 + +2022-09-02 Christian Lohmaier [4166c813961b65158411c514a345138cc0de314c] + + Update git submodules + + * Update translations from branch 'libreoffice-7-3' + to 8bb02246241e6392f4248db38170fe464007875a + - update translations for 7.3.6 rc2 + + and force-fix errors using pocheck + + Change-Id: If670471ca0da694df46938c55597818abfb2c8ea + +2022-09-02 Stephan Bergmann [da291e2960b75153f41d440a1b41961567432e8c] Filter out unwanted command URIs @@ -43,26 +1335,58 @@ Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139182 Tested-by: Jenkins Reviewed-by: Miklos Vajna - (cherry picked from commit da291e2960b75153f41d440a1b41961567432e8c) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139185 + +2022-09-01 Luboš Luňák [6a57652cfc2e46a271091246cd867804c39f845c] + + fix limiting drawing of softedge effect (tdf#141981) + + Apparently an empty viewport actually means everything should be drawn. + + Change-Id: I55ae453a8f264d48222ade48a2953ab7d97c7f79 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138991 + Tested-by: Jenkins + Tested-by: Caolán McNamara Reviewed-by: Caolán McNamara + +2022-08-31 Caolán McNamara [f5e3b0a7966d7d28817292adbb58fb43f28b7c6d] + + check IFrame "FrameURL" target + + similiar to + + commit b3edf85e0fe6ca03dc26e1bf531be82193bc9627 + Date: Wed Aug 7 17:37:11 2019 +0100 + + warn on load when a document binds an event to a macro + + Change-Id: Iea888b1c083d2dc69ec322309ac9ae8c5e5eb315 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139059 + Tested-by: Jenkins + Reviewed-by: Stephan Bergmann + (cherry picked from commit c7450d0b9d02c64ae3da467d329040787039767e) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139117 Reviewed-by: Christian Lohmaier - Tested-by: Christian Lohmaier -2022-09-02 Christian Lohmaier [50e37da50cefe77b3b365f3f54eb2d01aa67368b] +2022-08-31 Christian Lohmaier [15a4524a846434a1b35026d33e6c3f3688af18fd] + + update credits + + Change-Id: Ie408cedd6e71deb241e3e059c364c75ce0f1d308 + (cherry picked from commit 2ab1136594baf0393d84d2c04d21561847498ac9) + +2022-08-31 Christian Lohmaier [6ed4c6959ee8628f5762463f4a099f655c10eb09] Update git submodules - * Update translations from branch 'libreoffice-7-3-6' - to e40d7d4957c0f0e717034fe4f311d17d4bebade7 + * Update translations from branch 'libreoffice-7-3' + to d0465390939211e803f10548e618dc68dabe4421 - update translations for 7.3.6 rc2 and force-fix errors using pocheck - Change-Id: If670471ca0da694df46938c55597818abfb2c8ea - (cherry picked from commit 8bb02246241e6392f4248db38170fe464007875a) + Change-Id: I1ae9645927117017ecb4d85e28eabeb71d3ba894 -2022-09-01 Stephan Bergmann [71abb628797c0d5e4c15b71f10657b0e32b58386] +2022-08-31 Stephan Bergmann [5b4025bb56999f5c895c6f7e0b52f521800d65b0] These commands are always URLs already @@ -74,34 +1398,65 @@ (cherry picked from commit e61701e1ee6763de72b397e6ade1124eca9400f3) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138980 Reviewed-by: Caolán McNamara - (cherry picked from commit 5b4025bb56999f5c895c6f7e0b52f521800d65b0) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138986 - Reviewed-by: Christian Lohmaier - Reviewed-by: Hossein - Tested-by: Caolán McNamara -2022-08-31 Christian Lohmaier [93c567313bfdc8514f94a02d2221606794cfa977] +2022-08-30 Michael Stahl [0b8ce1c0e9606971882acb00fa826ab5cc194cb4] - update credits + sw: fix infinite recursion in SwEditWin::GetSurroundingTextSelection() - Change-Id: Ie408cedd6e71deb241e3e059c364c75ce0f1d308 - (cherry picked from commit 2ab1136594baf0393d84d2c04d21561847498ac9) - (cherry picked from commit 15a4524a846434a1b35026d33e6c3f3688af18fd) - -2022-08-31 Christian Lohmaier [4d3aaa53536a7aec79d91b65ed24b85804ad0e81] - - Update git submodules + The unexpected problem of calling SwCursorShell::Pop() from there ending + up calling the function itself again, with gtk3 UI, on loading + forum-mso-en-4034.docx and clicking somewhere or scrolling: + + 466 SwEditWin::GetSurroundingTextSelection() const at sw/source/uibase/docvw/edtwin.cxx:6656 + 467 ImplHandleSurroundingTextRequest(vcl::Window*, rtl::OUString&, Selection&) at vcl/source/window/winproc.cxx:2487 + 468 ImplHandleSalSurroundingTextRequest(vcl::Window*, SalSurroundingTextRequestEvent*) at vcl/source/window/winproc.cxx:2497 + 469 ImplWindowFrameProc(vcl::Window*, SalEvent, void const*) at vcl/source/window/winproc.cxx:2826 + 470 SalFrame::CallCallback(SalEvent, void const*) const at vcl/inc/salframe.hxx:306 + 471 GtkSalFrame::IMHandler::signalIMRetrieveSurrounding(_GtkIMContext*, void*) at vcl/unx/gtk3/gtkframe.cxx:5707 + 472 _gtk_marshal_BOOLEAN__VOIDv () at /lib64/libgtk-3.so.0 + 473 g_signal_emit_valist () at /lib64/libgobject-2.0.so.0 + 474 g_signal_emit_by_name () at /lib64/libgobject-2.0.so.0 + 475 gtk_im_multicontext_retrieve_surrounding_cb () at /lib64/libgtk-3.so.0 + 476 _gtk_marshal_BOOLEAN__VOIDv () at /lib64/libgtk-3.so.0 + 477 g_signal_emit_valist () at /lib64/libgobject-2.0.so.0 + 478 g_signal_emit_by_name () at /lib64/libgobject-2.0.so.0 + 479 enable () at /lib64/libgtk-3.so.0 + 480 GtkSalFrame::IMHandler::createIMContext() at vcl/unx/gtk3/gtkframe.cxx:5187 + 481 GtkSalFrame::IMHandler::IMHandler(GtkSalFrame*) at vcl/unx/gtk3/gtkframe.cxx:5153 + 482 GtkSalFrame::SetInputContext(SalInputContext*) at vcl/unx/gtk3/gtkframe.cxx:2711 + 483 vcl::Window::ImplNewInputContext() () at vcl/source/window/window.cxx:1781 + 484 vcl::Window::SetInputContext(InputContext const&) at vcl/source/window/window.cxx:2083 + 485 SwView::CheckReadonlySelection() at sw/source/uibase/uiview/view.cxx:699 + 486 SwView::AttrChangedNotify(LinkParamNone*) at sw/source/uibase/uiview/view.cxx:510 + 487 SwView::LinkStubAttrChangedNotify(void*, LinkParamNone*) at sw/source/uibase/uiview/view.cxx:499 + 488 Link::Call(LinkParamNone*) const at include/tools/link.hxx:111 + 489 SwCursorShell::CallChgLnk() at sw/source/core/crsr/crsrsh.cxx:2544 + 490 SwCallLink::~SwCallLink() at sw/source/core/crsr/callnk.cxx:149 + 491 SwCursorShell::Pop(SwCursorShell::PopMode) at sw/source/core/crsr/crsrsh.cxx:2327 + 492 SwWrtShell::Pop(SwCursorShell::PopMode) at sw/source/uibase/wrtsh/wrtsh1.cxx:2016 + 493 SwEditWin::GetSurroundingTextSelection() const at sw/source/uibase/docvw/edtwin.cxx:6656 + + This SwCallLink looks unnecessary here, but it's triggered because it + compares the state before Pop() to the state after Pop(), instead of the + state before Push() to the state after Pop(). + + This problem could probably benefit from being solved more generally, + but with 2 functions involved it gets rather ugly as it can't easily be + encapsulated in SwCursorShell. - * Update translations from branch 'libreoffice-7-3-6' - to 3498186b39817ae3f3e6d74350e39b7ef5c90e22 - - update translations for 7.3.6 rc2 - - and force-fix errors using pocheck - - Change-Id: I1ae9645927117017ecb4d85e28eabeb71d3ba894 - (cherry picked from commit d0465390939211e803f10548e618dc68dabe4421) - -2022-08-31 Caolán McNamara [dd8775dd0d89dac5bb239304efeafdbf515a8841] + (probably regression from aac9bd235e65b27faf63e64bba3ecd94837381d6) + + Change-Id: Ief176b54daf96da378d2e5d57f3dd5b4a0817299 + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137987 + Tested-by: Jenkins + Reviewed-by: Michael Stahl + (cherry picked from commit 581ba395222e04e43697484bef9181c877d1fd61) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138027 + Reviewed-by: Thorsten Behrens + (cherry picked from commit d7a427d9c869729c21285df7c32106f934f66a04) + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138548 + +2022-08-30 Caolán McNamara [188555883266b661ec201548bc4b4ccd01460862] Resolves: tdf#150629 the window was destroyed from the fadetimer callback @@ -110,12 +1465,11 @@ the disposed SwPageBreakWin Change-Id: If29ffb45fbde607d35c12064b05e4b5d25c2f009 - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138977 - Reviewed-by: Adolfo Jayme Barrientos - Tested-by: Christian Lohmaier - Reviewed-by: Christian Lohmaier + Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138976 + Tested-by: Jenkins + Reviewed-by: Miklos Vajna -2022-08-31 Caolán McNamara [6dcaa2d812a1c9eb95398d46ff00eec616f0ff68] +2022-08-26 Caolán McNamara [f6b48296968f8280c26e11b0129a88540f5236cf] crashtesting: empty brace init of o3tl::enumarray doesn't zero each element @@ -134,12 +1488,8 @@ Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138828 Tested-by: Jenkins Reviewed-by: Xisco Fauli - (cherry picked from commit 86a5e2542a1a073f7456f2f8f6aea06d3dfd557e) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138896 - Tested-by: Christian Lohmaier - Reviewed-by: Christian Lohmaier -2022-08-31 Mike Kaganski [16eafe39aba428178aea67fba38cdfb8abf25262] +2022-08-26 Mike Kaganski [0e12ed1c39531566d080c9fa1e27e9e2659addd2] tdf#150577: Revert "Micro-optim in FormController::approveRowChange" @@ -158,13 +1508,8 @@ (cherry picked from commit 59f30175bfc557aa7c752ab0b45af9d34215d4dc) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138822 Reviewed-by: Caolán McNamara - (cherry picked from commit 0e12ed1c39531566d080c9fa1e27e9e2659addd2) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138894 - Reviewed-by: Xisco Fauli - Reviewed-by: Christian Lohmaier - Tested-by: Christian Lohmaier -2022-08-30 Regina Henschel [927b6e72274fa19a6a43e95a7f93901183ee1690] +2022-08-24 Regina Henschel [89552d1652bbe026f9572325056056b449d74716] tdf#150407 do not use loext in save in ODF strict @@ -186,29 +1531,12 @@ Reviewed-by: Michael Stahl (cherry picked from commit 34edaf8249107c4216fdaffe450d287a1908a0de) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138547 - (cherry picked from commit 89552d1652bbe026f9572325056056b449d74716) - Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138823 - Reviewed-by: Thorsten Behrens - Tested-by: Miklos Vajna - Reviewed-by: Miklos Vajna - -2022-08-18 Christian Lohmaier [0d86eba8281f869f65d0f6286830603ad86a829b] - bump product version to 7.3.6.1.0+ - - Change-Id: I4516d21f491964779bb4e17c25973ec0820e1700 - -2022-08-18 Christian Lohmaier [8e6f5da042f08a80850581f9dc21989f8210463d] +2022-08-18 Christian Lohmaier [a440ef9a2b14cf1fb0933edfd6060b3c9ce0fa8c] - Branch libreoffice-7-3-6 - - This is 'libreoffice-7-3-6' - the stable branch for the 7.3.6 release. - Only very safe changes, reviewed by three people are allowed. + bump product version to 7.3.7.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: Ieb589b4532424bc37d08b37d129227ee82f16075 2022-08-18 Christian Lohmaier [ad8bf9aa247c9afc69e002d14b23954254578bbe] diff -Nru libreoffice-7.3.6/comphelper/source/misc/SelectionMultiplex.cxx libreoffice-7.3.7/comphelper/source/misc/SelectionMultiplex.cxx --- libreoffice-7.3.6/comphelper/source/misc/SelectionMultiplex.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/comphelper/source/misc/SelectionMultiplex.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -95,7 +95,16 @@ m_pListener->_selectionChanged(_rEvent); } +void OSelectionChangeMultiplexer::dispose() +{ + osl_atomic_increment(&m_refCount); + { + Reference< XSelectionChangeListener> xPreventDelete(this); + m_xSet->removeSelectionChangeListener(xPreventDelete); + } + osl_atomic_decrement(&m_refCount); } +} /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff -Nru libreoffice-7.3.6/configure libreoffice-7.3.7/configure --- libreoffice-7.3.6/configure 2022-09-02 16:23:42.000000000 +0000 +++ libreoffice-7.3.7/configure 2022-10-27 10:13:17.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.6.2. +# Generated by GNU Autoconf 2.70 for LibreOffice 7.3.7.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.6.2' -PACKAGE_STRING='LibreOffice 7.3.6.2' +PACKAGE_VERSION='7.3.7.2' +PACKAGE_STRING='LibreOffice 7.3.7.2' PACKAGE_BUGREPORT='' PACKAGE_URL='http://documentfoundation.org/' @@ -1360,6 +1360,8 @@ LIBO_LIB_FOLDER LIBO_ETC_FOLDER LIBO_BIN_FOLDER +MACOSX_XCODE_BUILD_VERSION +MACOSX_SDK_BUILD_VERSION MACOSX_PROVISIONING_PROFILE MACOSX_PROVISIONING_INFO MACOSX_BUNDLE_IDENTIFIER @@ -2493,7 +2495,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.6.2 to adapt to many kinds of systems. +\`configure' configures LibreOffice 7.3.7.2 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -2563,7 +2565,7 @@ if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of LibreOffice 7.3.6.2:";; + short | recursive ) echo "Configuration of LibreOffice 7.3.7.2:";; esac cat <<\_ACEOF @@ -2965,7 +2967,7 @@ Define the product name. Default is LibreOffice. --with-package-version='3.1.4.5' Define the package version. Default is - 7.3.6.2. Use only if you distribute an + 7.3.7.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 @@ -3813,7 +3815,7 @@ test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -LibreOffice configure 7.3.6.2 +LibreOffice configure 7.3.7.2 generated by GNU Autoconf 2.70 Copyright (C) 2020 Free Software Foundation, Inc. @@ -4561,7 +4563,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.6.2, which was +It was created by LibreOffice $as_me 7.3.7.2, which was generated by GNU Autoconf 2.70. Invocation command line was $ $0$ac_configure_args_raw @@ -12508,7 +12510,7 @@ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: macOS SDK $macosx_sdk at $MACOSX_SDK_PATH" >&5 printf "%s\n" "macOS SDK $macosx_sdk at $MACOSX_SDK_PATH" >&6; } - + MACOSX_SDK_BUILD_VERSION=$(xcodebuild -version -sdk "$MACOSX_SDK_PATH" ProductBuildVersion) case $macosx_sdk in 10.13) MACOSX_SDK_VERSION=101300 @@ -12577,6 +12579,9 @@ as_fn_error $? "\"$my_xcode_ver1\" is too old or unrecognized, must be at least Xcode 11.3" "$LINENO" 5 fi + my_xcode_ver1=$(xcrun xcodebuild -version | tail -n 1) + MACOSX_XCODE_BUILD_VERSION=${my_xcode_ver1#Build version } + case "$with_macosx_version_min_required" in 10.12) MAC_OS_X_VERSION_MIN_REQUIRED="101200" @@ -12822,6 +12827,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; } @@ -23664,7 +23671,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 23667 "configure" + %line 23674 "configure" section .text global _main,main _main: @@ -27613,7 +27620,7 @@ LIBXML_LIBS="${WORKDIR}/UnpackedTarball/libxml2/win32/bin.msvc/libxml2.lib" else LIBXML_LIBS="-L${WORKDIR}/UnpackedTarball/libxml2/.libs -lxml2" - if test "$_os" = Android; then + if test "$DISABLE_DYNLOADING" = TRUE; then LIBXML_LIBS="$LIBXML_LIBS -lm" fi fi @@ -28714,7 +28721,7 @@ SYSTEM_PYTHON= PYTHON_VERSION_MAJOR=3 PYTHON_VERSION_MINOR=8 - PYTHON_VERSION=${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}.10 + PYTHON_VERSION=${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}.15 if ! grep -q -i python.*${PYTHON_VERSION} ${SRC_ROOT}/download.lst; then as_fn_error $? "PYTHON_VERSION ${PYTHON_VERSION} but no matching file in download.lst" "$LINENO" 5 fi @@ -45072,7 +45079,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.6.2, which was +This file was extended by LibreOffice $as_me 7.3.7.2, which was generated by GNU Autoconf 2.70. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -45141,7 +45148,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\\ -LibreOffice config.status 7.3.6.2 +LibreOffice config.status 7.3.7.2 configured by $0, generated by GNU Autoconf 2.70, with options \\"\$ac_cs_config\\" diff -Nru libreoffice-7.3.6/configure.ac libreoffice-7.3.7/configure.ac --- libreoffice-7.3.6/configure.ac 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/configure.ac 2022-10-27 10:11:14.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.6.2],[],[],[http://documentfoundation.org/]) +AC_INIT([LibreOffice],[7.3.7.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 @@ -3286,7 +3286,7 @@ fi AC_MSG_RESULT([macOS SDK $macosx_sdk at $MACOSX_SDK_PATH]) - + MACOSX_SDK_BUILD_VERSION=$(xcodebuild -version -sdk "$MACOSX_SDK_PATH" ProductBuildVersion) case $macosx_sdk in 10.13) MACOSX_SDK_VERSION=101300 @@ -3353,6 +3353,9 @@ AC_MSG_ERROR(["$my_xcode_ver1" is too old or unrecognized, must be at least Xcode 11.3]) fi + my_xcode_ver1=$(xcrun xcodebuild -version | tail -n 1) + MACOSX_XCODE_BUILD_VERSION=${my_xcode_ver1#Build version } + case "$with_macosx_version_min_required" in 10.12) MAC_OS_X_VERSION_MIN_REQUIRED="101200" @@ -3574,6 +3577,8 @@ AC_SUBST(MACOSX_BUNDLE_IDENTIFIER) AC_SUBST(MACOSX_PROVISIONING_INFO) AC_SUBST(MACOSX_PROVISIONING_PROFILE) +AC_SUBST(MACOSX_SDK_BUILD_VERSION) +AC_SUBST(MACOSX_XCODE_BUILD_VERSION) dnl =================================================================== dnl Check iOS SDK and compiler @@ -9614,7 +9619,7 @@ LIBXML_LIBS="${WORKDIR}/UnpackedTarball/libxml2/win32/bin.msvc/libxml2.lib" else LIBXML_LIBS="-L${WORKDIR}/UnpackedTarball/libxml2/.libs -lxml2" - if test "$_os" = Android; then + if test "$DISABLE_DYNLOADING" = TRUE; then LIBXML_LIBS="$LIBXML_LIBS -lm" fi fi @@ -9844,7 +9849,7 @@ SYSTEM_PYTHON= PYTHON_VERSION_MAJOR=3 PYTHON_VERSION_MINOR=8 - PYTHON_VERSION=${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}.10 + PYTHON_VERSION=${PYTHON_VERSION_MAJOR}.${PYTHON_VERSION_MINOR}.15 if ! grep -q -i python.*${PYTHON_VERSION} ${SRC_ROOT}/download.lst; then AC_MSG_ERROR([PYTHON_VERSION ${PYTHON_VERSION} but no matching file in download.lst]) fi diff -Nru libreoffice-7.3.6/cui/source/dialogs/SpellDialog.cxx libreoffice-7.3.7/cui/source/dialogs/SpellDialog.cxx --- libreoffice-7.3.6/cui/source/dialogs/SpellDialog.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/cui/source/dialogs/SpellDialog.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -351,6 +351,11 @@ //then GetNextSentence() has to be called followed again by MarkNextError() //MarkNextError is not initially called if the UndoEdit mode is active bool bNextSentence = false; + if (!m_xSentenceED) + { + return; + } + if(!((!m_xSentenceED->IsUndoEditMode() && m_xSentenceED->MarkNextError( bIgnoreCurrentError, xSpell )) || ( bNextSentence = GetNextSentence_Impl(pGuard, bUseSavedSentence, m_xSentenceED->IsUndoEditMode()) && m_xSentenceED->MarkNextError( false, xSpell )))) return; diff -Nru libreoffice-7.3.6/cui/source/tabpages/numpages.cxx libreoffice-7.3.7/cui/source/tabpages/numpages.cxx --- libreoffice-7.3.6/cui/source/tabpages/numpages.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/cui/source/tabpages/numpages.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -2212,7 +2212,7 @@ tools::Long nWidthRelation = 30; // chapter dialog // height per level - tools::Long nXStep = aSize.Width() / (3 * pActNum->GetLevelCount()); + tools::Long nXStep = aSize.Width() / (pActNum->GetLevelCount() > 1 ? 3 * pActNum->GetLevelCount() : 3); if (pActNum->GetLevelCount() < 10) nXStep /= 2; tools::Long nYStart = 4; diff -Nru libreoffice-7.3.6/dbaccess/source/core/misc/dsntypes.cxx libreoffice-7.3.7/dbaccess/source/core/misc/dsntypes.cxx --- libreoffice-7.3.6/dbaccess/source/core/misc/dsntypes.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/dbaccess/source/core/misc/dsntypes.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -17,6 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include #include #include #include @@ -286,7 +287,7 @@ OUString ODsnTypeCollection::getEmbeddedDatabase() { - if (officecfg::Office::Common::Misc::ExperimentalMode::get()) + if (!HAVE_FEATURE_JAVA || officecfg::Office::Common::Misc::ExperimentalMode::get()) return "sdbc:embedded:firebird"; else return "sdbc:embedded:hsqldb"; diff -Nru libreoffice-7.3.6/dbaccess/source/ui/control/dbtreelistbox.cxx libreoffice-7.3.7/dbaccess/source/ui/control/dbtreelistbox.cxx --- libreoffice-7.3.6/dbaccess/source/ui/control/dbtreelistbox.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/dbaccess/source/ui/control/dbtreelistbox.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -186,8 +186,16 @@ std::unique_ptr TreeListBox::GetEntryPosByName(std::u16string_view aName, const weld::TreeIter* pStart, const IEntryFilter* _pFilter) const { auto xEntry(m_xTreeView->make_iterator(pStart)); - if (!pStart && !m_xTreeView->get_iter_first(*xEntry)) - return nullptr; + if (pStart) + { + if (!m_xTreeView->iter_children(*xEntry)) + return nullptr; + } + else + { + if (!m_xTreeView->get_iter_first(*xEntry)) + return nullptr; + } do { @@ -199,7 +207,7 @@ return xEntry; } } - } while (m_xTreeView->iter_next(*xEntry)); + } while (m_xTreeView->iter_next_sibling(*xEntry)); return nullptr; } diff -Nru libreoffice-7.3.6/dbaccess/source/ui/dlg/generalpage.cxx libreoffice-7.3.7/dbaccess/source/ui/dlg/generalpage.cxx --- libreoffice-7.3.6/dbaccess/source/ui/dlg/generalpage.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/dbaccess/source/ui/dlg/generalpage.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -17,6 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include #include #include "dsnItem.hxx" #include "generalpage.hxx" @@ -154,9 +155,11 @@ if (m_xEmbeddedDBType->find_text(sDisplayName) == -1 && dbaccess::ODsnTypeCollection::isEmbeddedDatabase(sURLPrefix)) { +#if !HAVE_FEATURE_MACOSX_SANDBOX if( !officecfg::Office::Common::Misc::ExperimentalMode::get() && sURLPrefix.startsWith("sdbc:embedded:firebird") ) continue; +#endif aDisplayedTypes.emplace_back( sURLPrefix, sDisplayName ); m_bIsDisplayedTypesEmpty = false; } diff -Nru libreoffice-7.3.6/debian/changelog libreoffice-7.3.7/debian/changelog --- libreoffice-7.3.6/debian/changelog 2022-10-21 11:35:33.000000000 +0000 +++ libreoffice-7.3.7/debian/changelog 2022-11-08 11:22:22.000000000 +0000 @@ -1,12 +1,6 @@ -libreoffice (1:7.3.6-0ubuntu0.22.04.2~bpo18.04.1) bionic-backports; urgency=medium +libreoffice (1:7.3.7-0ubuntu0.22.04.1~bpo18.04.1) bionic-backports; urgency=medium - * Backport from jammy - - -- Rico Tzschichholz Fri, 21 Oct 2022 13:35:33 +0200 - -libreoffice (1:7.3.6-0ubuntu0.22.04.1~bpo18.04.1) bionic-backports; urgency=medium - - * Backport from jammy (LP: #1990382) + * Backport from jammy (LP: #1996082) * Lower dpkg-dev requirement - buildopts.mk is not available in dpkg-dev < 1.20.1 * Lower libclucene-dev requirement @@ -15,7 +9,24 @@ libvisio, libwpd, libwpg to meat upstream requirements * Apparmor 2.13 is not available - -- Rico Tzschichholz Tue, 13 Sep 2022 09:49:44 +0200 + -- Rico Tzschichholz Tue, 08 Nov 2022 12:22:22 +0100 + +libreoffice (1:7.3.7-0ubuntu0.22.04.1) jammy; urgency=medium + + * New upstream release (LP: #1995054) + + [ Rico Tzschichholz ] + * Bump yaru source to "2022-09-04" + + [ Rene Engelhard ] + * debian/rules: + - add missing >&3 to ufcq calls in bug scripts + - fix build-depends-on-obsolete-package + (s/libfreetype6-dev/libfreetype-dev/, + s/libfontconfig1-dev/libfontconfig-dev/) + - don't add Graphics; to draws .desktop, it's already there + + -- Rico Tzschichholz Thu, 27 Oct 2022 12:34:13 +0200 libreoffice (1:7.3.6-0ubuntu0.22.04.2) jammy-security; urgency=medium diff -Nru libreoffice-7.3.6/debian/control libreoffice-7.3.7/debian/control --- libreoffice-7.3.6/debian/control 2022-10-21 11:35:33.000000000 +0000 +++ libreoffice-7.3.7/debian/control 2022-11-08 11:22:22.000000000 +0000 @@ -95,7 +95,7 @@ libopenjp2-7-dev (>= 2.3), libpagemaker-dev, libpagemaker-dev (<< 0.1~), - libpng-dev, + libpng-dev (>= 1.6), libpoppler-cpp-dev, libpoppler-dev (>= 0.14.0), libpoppler-private-dev, @@ -5030,6 +5030,9 @@ . This package contains the Qt 5 plugin for drawing LibreOffices widgets with Qt 5 and a Qt File Picker and print dialog. + . + You need to enable it manually by export SAL_USE_VCLPLUGIN=qt5 if you are + not using Plasma. Package: libreoffice-plasma Architecture: amd64 arm64 armhf i386 ppc64el s390x diff -Nru libreoffice-7.3.6/debian/control.gtk4.in libreoffice-7.3.7/debian/control.gtk4.in --- libreoffice-7.3.6/debian/control.gtk4.in 2022-10-21 05:28:05.000000000 +0000 +++ libreoffice-7.3.7/debian/control.gtk4.in 2022-11-08 11:22:22.000000000 +0000 @@ -11,5 +11,7 @@ a near drop-in replacement for Microsoft(R) Office. . This package contains the Gtk plugin for drawing LibreOffices widgets - with Gtk+ 4 and Gtk/GNOMEish print dialog when running under GNOME. + with Gtk+ 4 and Gtk/GNOMEish print dialog. + . + You need to enable it manually by export SAL_USE_VCLPLUGIN=gtk4. diff -Nru libreoffice-7.3.6/debian/control.qt5.in libreoffice-7.3.7/debian/control.qt5.in --- libreoffice-7.3.6/debian/control.qt5.in 2022-10-21 05:06:32.000000000 +0000 +++ libreoffice-7.3.7/debian/control.qt5.in 2022-11-08 11:22:22.000000000 +0000 @@ -10,4 +10,7 @@ . This package contains the Qt 5 plugin for drawing LibreOffices widgets with Qt 5 and a Qt File Picker and print dialog. + . + You need to enable it manually by export SAL_USE_VCLPLUGIN=qt5 if you are + not using Plasma. diff -Nru libreoffice-7.3.6/debian/control.qt6.in libreoffice-7.3.7/debian/control.qt6.in --- libreoffice-7.3.6/debian/control.qt6.in 2022-10-21 05:28:05.000000000 +0000 +++ libreoffice-7.3.7/debian/control.qt6.in 2022-11-08 11:22:22.000000000 +0000 @@ -10,4 +10,6 @@ . This package contains the Qt 6 plugin for drawing LibreOffices widgets with Qt 6 and a Qt File Picker and print dialog. + . + You need to enable it manually by export SAL_USE_VCLPLUGIN=qt6. diff -Nru libreoffice-7.3.6/debian/patches/CVE-2022-3140-4.patch libreoffice-7.3.7/debian/patches/CVE-2022-3140-4.patch --- libreoffice-7.3.6/debian/patches/CVE-2022-3140-4.patch 2022-10-21 11:35:33.000000000 +0000 +++ libreoffice-7.3.7/debian/patches/CVE-2022-3140-4.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -From d0312786571221c2dd4f63fa69f6f0489d7d39ec Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= -Date: Tue, 6 Sep 2022 11:38:55 +0100 -Subject: [PATCH] check impress/calc IFrame "FrameURL" target - -similar to - -commit c7450d0b9d02c64ae3da467d329040787039767e -Date: Tue Aug 30 17:01:08 2022 +0100 - - check IFrame "FrameURL" target - -Change-Id: Ibf28c29acb4476830431d02772f3ecd4b23a6a27 -Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139495 -Tested-by: Jenkins -Reviewed-by: Stephan Bergmann ---- - xmloff/source/draw/ximpshap.cxx | 4 ++++ - 1 file changed, 4 insertions(+) - -diff --git a/xmloff/source/draw/ximpshap.cxx b/xmloff/source/draw/ximpshap.cxx -index a19a6c19d936f..f2e2172434743 100644 ---- a/xmloff/source/draw/ximpshap.cxx -+++ b/xmloff/source/draw/ximpshap.cxx -@@ -87,6 +87,7 @@ - #include - #include - #include -+#include - #include - #include - -@@ -3128,6 +3129,9 @@ void SdXMLFloatingFrameShapeContext::startFastElement (sal_Int32 /*nElement*/, - - if( !maHref.isEmpty() ) - { -+ if (INetURLObject(maHref).GetProtocol() == INetProtocol::Macro) -+ GetImport().NotifyMacroEventRead(); -+ - xProps->setPropertyValue("FrameURL", Any(maHref) ); - } - } diff -Nru libreoffice-7.3.6/debian/patches/series libreoffice-7.3.7/debian/patches/series --- libreoffice-7.3.6/debian/patches/series 2022-10-21 11:35:33.000000000 +0000 +++ libreoffice-7.3.7/debian/patches/series 2022-11-08 11:22:22.000000000 +0000 @@ -53,7 +53,6 @@ tdf-108560-horribly-slow-to-paste-many-lines-into-ed.patch arm-fp-mode.diff moreIconsDialog-accesses-internet.diff -CVE-2022-3140-4.patch icu-66.patch boost-1.65.1.patch icu-60.patch diff -Nru libreoffice-7.3.6/debian/rules libreoffice-7.3.7/debian/rules --- libreoffice-7.3.6/debian/rules 2022-10-21 11:35:33.000000000 +0000 +++ libreoffice-7.3.7/debian/rules 2022-11-08 11:22:22.000000000 +0000 @@ -73,18 +73,18 @@ 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.6.2 +lo_sources_ver=7.3.7.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-6 +GIT_BRANCH=libreoffice-7-3-7 endif ifeq "$(USE_SOURCE_TARBALLS)" "y" lo_sources_ver=$(shell cat $(CURDIR)/sources.ver | cut -d= -f2) endif ifeq "$(USE_GIT_TARBALLS)" "y" -YARU_GIT_TAG=2022-08-15 +YARU_GIT_TAG=2022-09-04 endif ######### @@ -921,7 +921,7 @@ BUILD_DEPS += , libsane-dev endif ifneq (,$(filter libpng, $(SYSTEM_STUFF))) - BUILD_DEPS += , libpng-dev + BUILD_DEPS += , libpng-dev (>= 1.6) endif ifeq "$(ENABLE_CURL)" "y" @@ -2825,7 +2825,7 @@ if grep -q "lool" $$MAINTSCRIPT.in; then \ cat debian/shell-lib-lool.sh >> $$MAINTSCRIPT; \ fi; \ - if egrep -q "(validate_extension|sync_extension)" $$MAINTSCRIPT.in; then \ + if grep -E -q "(validate_extension|sync_extension)" $$MAINTSCRIPT.in; then \ cat debian/shell-lib-extensions.sh >> $$MAINTSCRIPT; \ fi; \ sed -n '/^#INCLUDE_SHELL_LIB#$$/,$$p' < $$MAINTSCRIPT.in | sed -e '/^#INCLUDE_SHELL_LIB#$$/d' >> $$MAINTSCRIPT; \ @@ -3075,7 +3075,6 @@ mkdir -p -m755 $(PKGDIR)-base/usr/share/applications \ $(PKGDIR)-core/usr/share/applications - sed -i -e 's/Office;/Office;Graphics;/' $(PKGDIR)-draw/usr/share/applications/libreoffice-draw.desktop sed -i -e 's/Education;Science;//' $(PKGDIR)-math/usr/share/applications/libreoffice-math.desktop # invalid, according to lintian. make it shut up. for i in writer calc impress draw math base; do \ @@ -3222,7 +3221,7 @@ if [ ! -e debian/$$i.bug-script.in ]; then \ printf "#!/bin/sh\n\n" > debian/$$i.bug-script; \ fi ;\ - echo "ucfq $$i" >> debian/$$i.bug-script; \ + echo "ucfq $$i >&3" >> debian/$$i.bug-script; \ fi ;\ done # generate .links files from *.in @@ -3533,7 +3532,7 @@ if [ ! -e debian/$$i.bug-script.in ]; then \ printf "#!/bin/sh\n\n" > debian/$$i.bug-script; \ fi ;\ - echo "ucfq $$i" >> debian/$$i.bug-script; \ + echo "ucfq $$i >&3" >> debian/$$i.bug-script; \ fi ;\ done # generate .links files from *.in diff -Nru libreoffice-7.3.6/download.lst libreoffice-7.3.7/download.lst --- libreoffice-7.3.6/download.lst 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/download.lst 2022-10-27 10:11:14.000000000 +0000 @@ -37,12 +37,12 @@ export CPPUNIT_TARBALL := cppunit-1.15.1.tar.gz export CT2N_SHA256SUM := 71b238efd2734be9800af07566daea8d6685aeed28db5eb5fa0e6453f4d85de3 export CT2N_TARBALL := 1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt -export CURL_SHA256SUM := 2cb9c2356e7263a1272fd1435ef7cdebf2cd21400ec287b068396deb705c22c4 -export CURL_TARBALL := curl-7.83.1.tar.xz +export CURL_SHA256SUM := 2d61116e5f485581f6d59865377df4463f2e788677ac43222b496d4e49fb627b +export CURL_TARBALL := curl-7.86.0.tar.xz export EBOOK_SHA256SUM := 7e8d8ff34f27831aca3bc6f9cc532c2f90d2057c778963b884ff3d1e34dfe1f9 export EBOOK_TARBALL := libe-book-0.1.3.tar.xz -export EPOXY_SHA256SUM := d168a19a6edfdd9977fef1308ccf516079856a4275cf876de688fb7927e365e4 -export EPOXY_TARBALL := libepoxy-1.5.9.tar.xz +export EPOXY_SHA256SUM := a7ced37f4102b745ac86d6a70a9da399cc139ff168ba6b8002b4d8d43c900c15 +export EPOXY_TARBALL := libepoxy-1.5.10.tar.gz export EPM_SHA256SUM := b3fc4c5445de6c9a801504a3ea3efb2d4ea9d5a622c9427e716736e7713ddb91 export EPM_TARBALL := 3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz export EPUBGEN_SHA256SUM := 03e084b994cbeffc8c3dd13303b2cb805f44d8f2c3b79f7690d7e3fc7f6215ad @@ -50,8 +50,8 @@ export ETONYEK_SHA256SUM := b430435a6e8487888b761dc848b7981626eb814884963ffe25eb26a139301e9a export ETONYEK_VERSION_MICRO := 10 export ETONYEK_TARBALL := libetonyek-0.1.$(ETONYEK_VERSION_MICRO).tar.xz -export EXPAT_SHA256SUM := de55794b7a9bc214852fdc075beaaecd854efe1361597e6268ee87946951289b -export EXPAT_TARBALL := expat-2.4.6.tar.xz +export EXPAT_SHA256SUM := 6e8c0728fe5c7cd3f93a6acce43046c5e4736c7b4b68e032e9350daa0efc0354 +export EXPAT_TARBALL := expat-2.4.9.tar.xz export FIREBIRD_SHA256SUM := acb85cedafa10ce106b1823fb236b1b3e5d942a5741e8f8435cc8ccfec0afe76 export FIREBIRD_TARBALL := Firebird-3.0.7.33374-0.tar.bz2 export FONTCONFIG_SHA256SUM := a5f052cb73fd479ffb7b697980510903b563bbb55b8f7a2b001fcfb94026003c @@ -166,9 +166,9 @@ export LIBTOMMATH_TARBALL := ltm-1.0.zip export XMLSEC_SHA256SUM := 26041d35a20a245ed5a2fb9ee075f10825664d274220cb5190340fa87a4d0931 export XMLSEC_TARBALL := xmlsec1-1.2.33.tar.gz -export LIBXML_SHA256SUM := 60d74a257d1ccec0475e749cba2f21559e48139efba6ff28224357c7c798dfee -export LIBXML_VERSION_MICRO := 14 -export LIBXML_TARBALL := libxml2-2.9.$(LIBXML_VERSION_MICRO).tar.xz +export LIBXML_SHA256SUM := 5d2cc3d78bec3dbe212a9d7fa629ada25a7da928af432c93060ff5c17ee28a9c +export LIBXML_VERSION_MICRO := 3 +export LIBXML_TARBALL := libxml2-2.10.$(LIBXML_VERSION_MICRO).tar.xz export LIBXSLT_SHA256SUM := 8247f33e9a872c6ac859aa45018bc4c4d00b97e2feac9eebc10c93ce1f34dd79 export LIBXSLT_VERSION_MICRO := 35 export LIBXSLT_TARBALL := libxslt-1.1.$(LIBXSLT_VERSION_MICRO).tar.xz @@ -191,8 +191,8 @@ export MYTHES_TARBALL := a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz export NEON_SHA256SUM := cf1ee3ac27a215814a9c80803fcee4f0ede8466ebead40267a9bd115e16a8678 export NEON_TARBALL := neon-0.31.2.tar.gz -export NSS_SHA256SUM := 5369ed274a19f480ec94e1faef04da63e3cbac1a82e15bb1751e58b2f274b835 -export NSS_TARBALL := nss-3.79-with-nspr-4.34.tar.gz +export NSS_SHA256SUM := b1e1198fa7ee4e0fe4fa6937245c94820fd3c3c6897779493858af1bf6310b30 +export NSS_TARBALL := nss-3.83-with-nspr-4.34.1.tar.gz export ODFGEN_SHA256SUM := 55200027fd46623b9bdddd38d275e7452d1b0ff8aeddcad6f9ae6dc25f610625 export ODFGEN_VERSION_MICRO := 8 export ODFGEN_TARBALL := libodfgen-0.1.$(ODFGEN_VERSION_MICRO).tar.xz @@ -202,8 +202,8 @@ export OFFICEOTRON_JAR := 8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar export OPENLDAP_SHA256SUM := 99f37d6747d88206c470067eda624d5e48c1011e943ec0ab217bae8712e22f34 export OPENLDAP_TARBALL := openldap-2.4.59.tgz -export OPENSSL_SHA256SUM := 0b7a3e5e59c34827fe0c3a74b7ec8baef302b98fa80088d7f9153aa16fa76bd1 -export OPENSSL_TARBALL := openssl-1.1.1l.tar.gz +export OPENSSL_SHA256SUM := d7939ce614029cdff0b6c20f0e2e5703158a489a72b2507b8bd51bf8c8fd10ca +export OPENSSL_TARBALL := openssl-1.1.1q.tar.gz export ORCUS_SHA256SUM := 2a86c405a5929f749b27637509596421d46805753364ab258b035fd01fbde143 export ORCUS_TARBALL := liborcus-0.17.2.tar.bz2 export PAGEMAKER_SHA256SUM := 66adacd705a7d19895e08eac46d1e851332adf2e736c566bef1164e7a442519d @@ -212,16 +212,16 @@ export PDFIUM_TARBALL := pdfium-4699.tar.bz2 export PIXMAN_SHA256SUM := 6d200dec3740d9ec4ec8d1180e25779c00bc749f94278c8b9021f5534db223fc export PIXMAN_TARBALL := pixman-0.40.0.tar.gz -export LIBPNG_SHA256SUM := 505e70834d35383537b6491e7ae8641f1a4bed1876dbfe361201fc80868d88ca -export LIBPNG_TARBALL := libpng-1.6.37.tar.xz -export POPPLER_SHA256SUM := 31b76b5cac0a48612fdd154c02d9eca01fd38fb8eaa77c1196840ecdeb53a584 -export POPPLER_TARBALL := poppler-21.11.0.tar.xz -export POPPLER_DATA_SHA256SUM := 6e2fcef66ec8c44625f94292ccf8af9f1d918b410d5aa69c274ce67387967b30 -export POPPLER_DATA_TARBALL := poppler-data-0.4.10.tar.gz -export POSTGRESQL_SHA256SUM := 9b81067a55edbaabc418aacef457dd8477642827499560b00615a6ea6c13f6b3 -export POSTGRESQL_TARBALL := postgresql-13.5.tar.bz2 -export PYTHON_SHA256SUM := 6af24a66093dd840bcccf371d4044a3027e655cf24591ce26e48022bc79219d9 -export PYTHON_TARBALL := Python-3.8.10.tar.xz +export LIBPNG_SHA256SUM := b3683e8b8111ebf6f1ac004ebb6b0c975cd310ec469d98364388e9cedbfa68be +export LIBPNG_TARBALL := libpng-1.6.38.tar.xz +export POPPLER_SHA256SUM := d7a8f748211359cadb774ba3e18ecda6464b34027045c0648eb30d5852a41e2e +export POPPLER_TARBALL := poppler-22.09.0.tar.xz +export POPPLER_DATA_SHA256SUM := 2cec05cd1bb03af98a8b06a1e22f6e6e1a65b1e2f3816cb3069bb0874825f08c +export POPPLER_DATA_TARBALL := poppler-data-0.4.11.tar.gz +export POSTGRESQL_SHA256SUM := 73876fdd3a517087340458dca4ce15b8d2a4dbceb334c0441424551ae6c4cded +export POSTGRESQL_TARBALL := postgresql-13.8.tar.bz2 +export PYTHON_SHA256SUM := 5114fc7918a2a5e20eb5aac696b30c36f412c6ef24b13f5c9eb9e056982d9550 +export PYTHON_TARBALL := Python-3.8.15.tar.xz export QXP_SHA256SUM := e137b6b110120a52c98edd02ebdc4095ee08d0d5295a94316a981750095a945c export QXP_TARBALL := libqxp-0.0.2.tar.xz export RAPTOR_SHA256SUM := ada7f0ba54787b33485d090d3d2680533520cd4426d2f7fb4782dd4a6a1480ed @@ -261,8 +261,8 @@ export WPS_TARBALL := libwps-0.4.$(WPS_VERSION_MICRO).tar.xz export XSLTML_SHA256SUM := 75823776fb51a9c526af904f1503a7afaaab900fba83eda64f8a41073724c870 export XSLTML_TARBALL := a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip -export ZLIB_SHA256SUM := 7db46b8d7726232a621befaab4a1c870f00a90805511c0e0090441dac57def18 -export ZLIB_TARBALL := zlib-1.2.12.tar.xz +export ZLIB_SHA256SUM := d14c38e313afc35a9a8760dadf26042f51ea0f5d154b0630a31da0540107fb98 +export ZLIB_TARBALL := zlib-1.2.13.tar.xz export ZMF_SHA256SUM := 27051a30cb057fdb5d5de65a1f165c7153dc76e27fe62251cbb86639eb2caf22 export ZMF_TARBALL := libzmf-0.0.2.tar.xz export ZXING_SHA256SUM := 653d9e44195d86cf64a36af9ff3a1978ec5599df3882439fefa56e7064f55e8a diff -Nru libreoffice-7.3.6/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx libreoffice-7.3.7/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx --- libreoffice-7.3.6/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/drawinglayer/source/processor2d/vclpixelprocessor2d.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -1072,7 +1072,8 @@ // Limit the bitmap size to the visible area. basegfx::B2DRange bitmapRange(aRange); - bitmapRange.intersect(aExpandedViewInfo.getDiscreteViewport()); + if (!aExpandedViewInfo.getDiscreteViewport().isEmpty()) + bitmapRange.intersect(aExpandedViewInfo.getDiscreteViewport()); if (!bitmapRange.isEmpty()) { const tools::Rectangle aRect( @@ -1133,7 +1134,8 @@ // Limit the bitmap size to the visible area. basegfx::B2DRange bitmapRange(aRange); - bitmapRange.intersect(aExpandedViewInfo.getDiscreteViewport()); + if (!aExpandedViewInfo.getDiscreteViewport().isEmpty()) + bitmapRange.intersect(aExpandedViewInfo.getDiscreteViewport()); if (!bitmapRange.isEmpty()) { const tools::Rectangle aRect( diff -Nru libreoffice-7.3.6/emfio/inc/wmfreader.hxx libreoffice-7.3.7/emfio/inc/wmfreader.hxx --- libreoffice-7.3.6/emfio/inc/wmfreader.hxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/emfio/inc/wmfreader.hxx 2022-10-27 10:11:14.000000000 +0000 @@ -33,6 +33,7 @@ private: sal_uInt16 mnUnitsPerInch; sal_uInt32 mnRecSize; + bool mbPlaceable; // embedded EMF data std::optional> mpEMFStream; Binary files /tmp/tmp7lj43w29/QEYlBQyeWR/libreoffice-7.3.6/emfio/qa/cppunit/wmf/data/TestBigPPI.wmf and /tmp/tmp7lj43w29/sw5eMqaWXV/libreoffice-7.3.7/emfio/qa/cppunit/wmf/data/TestBigPPI.wmf differ diff -Nru libreoffice-7.3.6/emfio/qa/cppunit/wmf/wmfimporttest.cxx libreoffice-7.3.7/emfio/qa/cppunit/wmf/wmfimporttest.cxx --- libreoffice-7.3.6/emfio/qa/cppunit/wmf/wmfimporttest.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/emfio/qa/cppunit/wmf/wmfimporttest.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -52,6 +52,7 @@ void testEmfProblem(); void testEmfLineStyles(); void testWorldTransformFontSize(); + void testBigPPI(); void testTdf93750(); void testTdf99402(); void testTdf39894(); @@ -65,6 +66,7 @@ CPPUNIT_TEST(testEmfProblem); CPPUNIT_TEST(testEmfLineStyles); CPPUNIT_TEST(testWorldTransformFontSize); + CPPUNIT_TEST(testBigPPI); CPPUNIT_TEST(testTdf93750); CPPUNIT_TEST(testTdf99402); CPPUNIT_TEST(testTdf39894); @@ -308,6 +310,27 @@ assertXPath(pDoc, "/metafile/font[4]", "weight", "normal"); } +void WmfTest::testBigPPI() +{ + // Test that PPI is reduced from 2540 to 96 (width from META_SETWINDOWEXT) to make the graphic + // bigger + SvFileStream aFileStream(getFullUrl(u"TestBigPPI.wmf"), StreamMode::READ); + GDIMetaFile aGDIMetaFile; + ReadWindowMetafile(aFileStream, aGDIMetaFile); + + MetafileXmlDump dumper; + dumper.filterAllActionTypes(); + dumper.filterActionType(MetaActionType::FONT, false); + xmlDocUniquePtr pDoc = dumpAndParse(dumper, aGDIMetaFile); + + CPPUNIT_ASSERT(pDoc); + + // If the PPI was not reduced the width and height would be <100 which is too small + // Related: tdf#150888 + assertXPath(pDoc, "/metafile", "width", "2540"); + assertXPath(pDoc, "/metafile", "height", "2143"); +} + void WmfTest::testTdf93750() { SvFileStream aFileStream(getFullUrl(u"tdf93750.emf"), StreamMode::READ); diff -Nru libreoffice-7.3.6/emfio/source/reader/wmfreader.cxx libreoffice-7.3.7/emfio/source/reader/wmfreader.cxx --- libreoffice-7.3.6/emfio/source/reader/wmfreader.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/emfio/source/reader/wmfreader.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -1412,11 +1412,11 @@ tools::Rectangle aPlaceableBound; - bool bPlaceable = nPlaceableMetaKey == 0x9ac6cdd7L; + mbPlaceable = nPlaceableMetaKey == 0x9ac6cdd7L; - SAL_INFO("emfio", "Placeable: \"" << (bPlaceable ? "yes" : "no") << "\""); + SAL_INFO("emfio", "Placeable: \"" << (mbPlaceable ? "yes" : "no") << "\""); - if (bPlaceable) + if (mbPlaceable) { //TODO do some real error handling here sal_Int16 nVal(0); @@ -1669,9 +1669,10 @@ Point aViewportOrg(0,0); std::optional aViewportExt; + sal_Int16 nMapMode = MM_ANISOTROPIC; + if (nEnd - nPos) { - sal_Int16 nMapMode = MM_ANISOTROPIC; sal_uInt16 nFunction; sal_uInt32 nRSize; @@ -2001,6 +2002,21 @@ if (aWinExt) { rPlaceableBound = tools::Rectangle(aWinOrg, *aWinExt); + if (mbPlaceable && nMapMode == MM_ANISOTROPIC) + { + // It seems that (in MM_ANISOTROPIC WMFs) the "inch" field (PPI) in META_PLACEABLE is + // ignored and instead competitor office suites decide what it should be arbitrarily + // Could have to do with MM_ANISOTROPICs definition: + // Logical units are mapped to arbitrary units with arbitrarily scaled axes. + // The issue is that when PPI is bigger than the window size, the image appears + // tiny (smaller than an inch squared). + // A solution is to scale PPI down in such images to an arbitrary amount that makes + // the image visible: + auto nWidth = rPlaceableBound.GetWidth(); + auto nHeight = rPlaceableBound.GetHeight(); + if (mnUnitsPerInch > nWidth && mnUnitsPerInch > nHeight) + mnUnitsPerInch = std::max(nWidth, nHeight); + } SAL_INFO("emfio", "Window dimension " " left: " << rPlaceableBound.Left() << " top: " << rPlaceableBound.Top() << " right: " << rPlaceableBound.Right() << " bottom: " << rPlaceableBound.Bottom()); @@ -2035,6 +2051,7 @@ : MtfTools(rGDIMetaFile, rStreamWMF) , mnUnitsPerInch(96) , mnRecSize(0) + , mbPlaceable(false) , mnEMFRecCount(0) , mnEMFRec(0) , mnEMFSize(0) diff -Nru libreoffice-7.3.6/external/curl/clang-cl.patch.0 libreoffice-7.3.7/external/curl/clang-cl.patch.0 --- libreoffice-7.3.6/external/curl/clang-cl.patch.0 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/curl/clang-cl.patch.0 2022-10-27 10:11:14.000000000 +0000 @@ -1,6 +1,6 @@ --- winbuild/MakefileBuild.vc +++ winbuild/MakefileBuild.vc -@@ -60,7 +60,7 @@ +@@ -52,7 +52,7 @@ !ELSE CC_NODEBUG = $(CC) /O2 /DNDEBUG CC_DEBUG = $(CC) /Od /D_DEBUG /RTC1 /Z7 /LDd diff -Nru libreoffice-7.3.6/external/curl/configurable-z-option.patch.0 libreoffice-7.3.7/external/curl/configurable-z-option.patch.0 --- libreoffice-7.3.6/external/curl/configurable-z-option.patch.0 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/curl/configurable-z-option.patch.0 2022-10-27 10:11:14.000000000 +0000 @@ -1,6 +1,6 @@ --- winbuild/MakefileBuild.vc.sav 2021-11-13 11:43:40.756226600 +0000 +++ winbuild/MakefileBuild.vc 2021-11-13 11:52:08.921692300 +0000 -@@ -45,7 +45,7 @@ +@@ -47,7 +47,7 @@ !IF "$(VC)"=="6" CC_NODEBUG = $(CC) /O2 /DNDEBUG @@ -9,7 +9,7 @@ CFLAGS = /I. /I../lib /I../include /nologo /W4 /GX /DWIN32 /YX /FD /c /DBUILDING_LIBCURL !ELSE CC_NODEBUG = $(CC) /O2 /DNDEBUG -@@ -62,7 +62,7 @@ +@@ -64,7 +64,7 @@ # Instead of id: just create an archive, that contains all objects LNKLIB = lib.exe diff -Nru libreoffice-7.3.6/external/curl/curl-7.26.0_win-proxy.patch libreoffice-7.3.7/external/curl/curl-7.26.0_win-proxy.patch --- libreoffice-7.3.6/external/curl/curl-7.26.0_win-proxy.patch 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/curl/curl-7.26.0_win-proxy.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,121 +0,0 @@ ---- curl/winbuild/MakefileBuild.vc.orig 2017-10-23 17:15:22.969492548 +0200 -+++ curl/winbuild/MakefileBuild.vc 2017-10-23 17:16:38.491490679 +0200 -@@ -72,7 +72,7 @@ - - CFLAGS_LIBCURL_STATIC = /DCURL_STATICLIB - --WIN_LIBS = ws2_32.lib wldap32.lib advapi32.lib crypt32.lib -+WIN_LIBS = ws2_32.lib wldap32.lib advapi32.lib crypt32.lib winhttp.lib - - BASE_NAME = libcurl - BASE_NAME_DEBUG = $(BASE_NAME)_debug ---- curl-7.26.0/lib/url.c -+++ misc/build/curl-7.26.0/lib/url.c -@@ -78,6 +78,10 @@ - bool curl_win32_idn_to_ascii(const char *in, char **out); - #endif /* USE_LIBIDN2 */ - -+#ifdef _WIN32 -+#include -+#endif -+ - #include "urldata.h" - #include "netrc.h" - -@@ -4586,6 +4590,21 @@ - } - - #ifndef CURL_DISABLE_HTTP -+#ifdef _WIN32 -+static char *wstrToCstr(LPWSTR wStr) -+{ -+ int bufSize; -+ char *out = NULL; -+ if(wStr) { -+ bufSize = WideCharToMultiByte( -+ CP_ACP, 0, wStr, -1, NULL, 0, NULL, NULL); -+ out = (char *)malloc(bufSize * sizeof(char)); -+ WideCharToMultiByte(CP_ACP, 0, wStr, -1, out, bufSize, NULL, NULL); -+ } -+ return out; -+} -+#endif -+ - /**************************************************************** - * Detect what (if any) proxy to use. Remember that this selects a host - * name and is not limited to HTTP proxies only. -@@ -4613,6 +4633,66 @@ - * For compatibility, the all-uppercase versions of these variables are - * checked if the lowercase versions don't exist. - */ -+#ifdef _WIN32 -+ char *no_proxy = NULL; -+ WINHTTP_CURRENT_USER_IE_PROXY_CONFIG *ieProxyConfig; -+ ieProxyConfig = (WINHTTP_CURRENT_USER_IE_PROXY_CONFIG *) -+ malloc(sizeof(WINHTTP_CURRENT_USER_IE_PROXY_CONFIG)); -+ if(WinHttpGetIEProxyConfigForCurrentUser(ieProxyConfig)) { -+ if(!ieProxyConfig->fAutoDetect) { -+ char *ieProxy; -+ char *ieNoProxy; -+ char *pos; -+ -+ ieProxy = wstrToCstr(ieProxyConfig->lpszProxy); -+ ieNoProxy = wstrToCstr(ieProxyConfig->lpszProxyBypass); -+ -+ /* Convert the ieNoProxy into a proper no_proxy value */ -+ if(ieNoProxy) { -+ no_proxy = strdup(ieNoProxy); -+ pos = strpbrk(no_proxy, "; "); -+ while(pos) { -+ no_proxy[pos-no_proxy] = ','; -+ pos = strpbrk(no_proxy, "; "); -+ } -+ } -+ -+ if(!check_noproxy(conn->host.name, no_proxy)) { -+ /* Look for the http proxy setting */ -+ char *tok; -+ char *saveptr; -+ -+ if(ieProxy) { -+ tok = strtok_s(ieProxy, ";", &saveptr); -+ if(!strchr(tok, '=')) { -+ proxy = strdup(ieProxy); -+ } -+ else { -+ do { -+ if(strncmp(tok, "http=", 5) == 0) { -+ /* We found HTTP proxy value, then use it */ -+ proxy = strdup(tok + 5); -+ } -+ tok = strtok_s(NULL, ";", &saveptr); -+ } -+ while(tok); -+ } -+ } -+ } -+ -+ free(ieProxy); -+ free(ieNoProxy); -+ } -+ else { -+ /* TODO Handle the Proxy config Auto Detection case */ -+ } -+ -+ GlobalFree(ieProxyConfig->lpszAutoConfigUrl); -+ GlobalFree(ieProxyConfig->lpszProxy); -+ GlobalFree(ieProxyConfig->lpszProxyBypass); -+ } -+ free(no_proxy); -+#else /* !_WIN32 */ - char proxy_env[128]; - const char *protop = conn->handler->scheme; - char *envp = proxy_env; -@@ -4663,6 +4739,7 @@ - } - if(proxy) - infof(data, "Uses proxy env variable %s == '%s'", envp, proxy); -+#endif /* _WIN32 */ - - return proxy; - } diff -Nru libreoffice-7.3.6/external/curl/curl-msvc-disable-protocols.patch.1 libreoffice-7.3.7/external/curl/curl-msvc-disable-protocols.patch.1 --- libreoffice-7.3.6/external/curl/curl-msvc-disable-protocols.patch.1 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/curl/curl-msvc-disable-protocols.patch.1 2022-10-27 10:11:14.000000000 +0000 @@ -2,7 +2,7 @@ --- curl/lib/config-win32.h.orig 2017-08-09 16:43:29.464000000 +0200 +++ curl/lib/config-win32.h 2017-08-09 16:47:38.549200000 +0200 -@@ -733,4 +733,20 @@ +@@ -616,4 +616,20 @@ # define ENABLE_IPV6 1 #endif @@ -25,7 +25,7 @@ #endif /* HEADER_CURL_CONFIG_WIN32_H */ --- curl/winbuild/MakefileBuild.vc.orig 2017-10-23 23:41:21.393200000 +0200 +++ curl/winbuild/MakefileBuild.vc 2017-10-23 23:34:16.028000000 +0200 -@@ -431,7 +431,7 @@ +@@ -562,7 +562,7 @@ EXE_OBJS = $(CURL_OBJS) $(CURL_DIROBJ)\curl.res diff -Nru libreoffice-7.3.6/external/curl/curl-msvc.patch.1 libreoffice-7.3.7/external/curl/curl-msvc.patch.1 --- libreoffice-7.3.6/external/curl/curl-msvc.patch.1 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/curl/curl-msvc.patch.1 2022-10-27 10:11:14.000000000 +0000 @@ -2,7 +2,7 @@ --- curl/winbuild/MakefileBuild.vc.orig 2017-10-23 16:36:07.713550851 +0200 +++ curl/winbuild/MakefileBuild.vc 2017-10-23 16:38:19.301547594 +0200 -@@ -60,7 +60,7 @@ +@@ -52,7 +52,7 @@ !ELSE CC_NODEBUG = $(CC) /O2 /DNDEBUG CC_DEBUG = $(CC) /Od /D_DEBUG /RTC1 /Z7 /LDd @@ -11,7 +11,7 @@ !ENDIF LFLAGS = /nologo /machine:$(MACHINE) -@@ -300,11 +300,11 @@ +@@ -426,11 +426,11 @@ # CURL_XX macros are for the curl.exe command !IF "$(DEBUG)"=="yes" diff -Nru libreoffice-7.3.6/external/curl/curl-msvc-zlib.patch.1 libreoffice-7.3.7/external/curl/curl-msvc-zlib.patch.1 --- libreoffice-7.3.6/external/curl/curl-msvc-zlib.patch.1 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/curl/curl-msvc-zlib.patch.1 2022-10-27 10:11:14.000000000 +0000 @@ -2,7 +2,7 @@ --- curl/winbuild/MakefileBuild.vc.orig2 2021-10-27 20:44:48.685237000 +0200 +++ curl/winbuild/MakefileBuild.vc 2021-10-27 20:47:23.792407400 +0200 -@@ -222,8 +222,9 @@ +@@ -244,8 +244,9 @@ ZLIB_LIB_DIR = $(ZLIB_PATH)\lib ZLIB_LFLAGS = $(ZLIB_LFLAGS) "/LIBPATH:$(ZLIB_LIB_DIR)" !ELSE diff -Nru libreoffice-7.3.6/external/curl/curl-nss.patch.1 libreoffice-7.3.7/external/curl/curl-nss.patch.1 --- libreoffice-7.3.6/external/curl/curl-nss.patch.1 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/curl/curl-nss.patch.1 2022-10-27 10:11:14.000000000 +0000 @@ -1,12 +1,17 @@ diff -ur curl.org/configure curl/configure --- curl.org/configure 2016-03-13 15:14:07.177000076 +0100 +++ curl/configure 2016-03-13 15:16:44.132000076 +0100 -@@ -28216,7 +28216,7 @@ +@@ -27985,7 +27985,12 @@ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: Using hard-wired libraries and compilation flags for NSS." >&5 printf "%s\n" "$as_me: WARNING: Using hard-wired libraries and compilation flags for NSS." >&2;} addld="-L$OPT_NSS/lib" - addlib="-lssl3 -lsmime3 -lnss3 -lplds4 -lplc4 -lnspr4" + addlib="-lssl3 -lsmime3 -lnss3 -lplds4 -lplc4 -lnspr4 -lnssutil3" ++ case $host_os in ++ *android*) ++ addlib="${addlib} -llog" ++ ;; ++ esac addcflags="-I$OPT_NSS/include" version="unknown" nssprefix=$OPT_NSS diff -Nru libreoffice-7.3.6/external/curl/ExternalProject_curl.mk libreoffice-7.3.7/external/curl/ExternalProject_curl.mk --- libreoffice-7.3.6/external/curl/ExternalProject_curl.mk 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/curl/ExternalProject_curl.mk 2022-10-27 10:11:14.000000000 +0000 @@ -44,7 +44,7 @@ $(if $(filter iOS MACOSX,$(OS)),\ --with-secure-transport,\ $(if $(ENABLE_NSS),--with-nss$(if $(SYSTEM_NSS),,="$(call gb_UnpackedTarball_get_dir,nss)/dist/out") --with-nss-deprecated,--without-nss)) \ - --without-ssl --without-gnutls --without-polarssl --without-cyassl --without-axtls --without-mbedtls \ + --without-openssl --without-gnutls --without-polarssl --without-cyassl --without-axtls --without-mbedtls \ --enable-ftp --enable-http --enable-ipv6 \ --without-libidn2 --without-libpsl --without-librtmp \ --without-libssh2 --without-metalink --without-nghttp2 \ diff -Nru libreoffice-7.3.6/external/curl/UnpackedTarball_curl.mk libreoffice-7.3.7/external/curl/UnpackedTarball_curl.mk --- libreoffice-7.3.6/external/curl/UnpackedTarball_curl.mk 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/curl/UnpackedTarball_curl.mk 2022-10-27 10:11:14.000000000 +0000 @@ -23,7 +23,6 @@ external/curl/curl-msvc.patch.1 \ external/curl/curl-msvc-zlib.patch.1 \ external/curl/curl-msvc-disable-protocols.patch.1 \ - external/curl/curl-7.26.0_win-proxy.patch \ external/curl/zlib.patch.0 \ external/curl/configurable-z-option.patch.0 \ )) diff -Nru libreoffice-7.3.6/external/curl/zlib.patch.0 libreoffice-7.3.7/external/curl/zlib.patch.0 --- libreoffice-7.3.6/external/curl/zlib.patch.0 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/curl/zlib.patch.0 2022-10-27 10:11:14.000000000 +0000 @@ -1,6 +1,6 @@ --- configure +++ configure -@@ -22699,7 +22699,6 @@ +@@ -22808,7 +22808,6 @@ clean_CPPFLAGS=$CPPFLAGS clean_LDFLAGS=$LDFLAGS clean_LIBS=$LIBS @@ -8,7 +8,7 @@ # Check whether --with-zlib was given. if test ${with_zlib+y} -@@ -22709,6 +22708,7 @@ +@@ -22818,6 +22818,7 @@ if test "$OPT_ZLIB" = "no" ; then @@ -16,7 +16,7 @@ { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: zlib disabled" >&5 printf "%s\n" "$as_me: WARNING: zlib disabled" >&2;} else -@@ -22716,6 +22716,21 @@ +@@ -22825,6 +825,21 @@ OPT_ZLIB="" fi @@ -38,7 +38,7 @@ if test -z "$OPT_ZLIB" ; then if test -n "$PKG_CONFIG"; then -@@ -23011,6 +23026,7 @@ +@@ -23120,6 +23120,7 @@ printf "%s\n" "$as_me: found both libz and libz.h header" >&6;} curl_zlib_msg="enabled" fi @@ -48,7 +48,7 @@ if test x"$AMFIXLIB" = x1; then --- configure.ac +++ configure.ac -@@ -880,19 +880,30 @@ +@@ -1222,19 +1222,30 @@ clean_CPPFLAGS=$CPPFLAGS clean_LDFLAGS=$LDFLAGS clean_LIBS=$LIBS @@ -80,7 +80,7 @@ if test -z "$OPT_ZLIB" ; then CURL_CHECK_PKGCONFIG(zlib) -@@ -975,6 +986,7 @@ +@@ -1316,6 +1316,7 @@ AC_MSG_NOTICE([found both libz and libz.h header]) curl_zlib_msg="enabled" fi diff -Nru libreoffice-7.3.6/external/epoxy/clang-cl.patch libreoffice-7.3.7/external/epoxy/clang-cl.patch --- libreoffice-7.3.6/external/epoxy/clang-cl.patch 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/epoxy/clang-cl.patch 2022-10-27 10:11:14.000000000 +0000 @@ -1,6 +1,6 @@ --- src/dispatch_common.c +++ src/dispatch_common.c -@@ -190,7 +190,11 @@ +@@ -272,7 +272,11 @@ #endif }; diff -Nru libreoffice-7.3.6/external/epoxy/epoxy.android.patch libreoffice-7.3.7/external/epoxy/epoxy.android.patch --- libreoffice-7.3.6/external/epoxy/epoxy.android.patch 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/epoxy/epoxy.android.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,14 +0,0 @@ ---- src/dispatch_common.c 2021-10-20 10:51:59.808554323 +0100 -+++ src/dispatch_common.c 2021-10-20 10:52:41.319645618 +0100 -@@ -687,7 +687,11 @@ - #endif - - if (!api.gl_handle) { -+#if defined(OPENGL_LIB) - fprintf(stderr, "Couldn't open %s or %s\n", GLX_LIB, OPENGL_LIB); -+#else -+ fprintf(stderr, "Couldn't open %s\n", GLX_LIB); -+#endif - abort(); - } - diff -Nru libreoffice-7.3.6/external/epoxy/UnpackedTarball_epoxy.mk libreoffice-7.3.7/external/epoxy/UnpackedTarball_epoxy.mk --- libreoffice-7.3.6/external/epoxy/UnpackedTarball_epoxy.mk 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/epoxy/UnpackedTarball_epoxy.mk 2022-10-27 10:11:14.000000000 +0000 @@ -32,7 +32,6 @@ external/epoxy/epoxy.windows.api.patch \ external/epoxy/epoxy.noegl.by.default.patch \ external/epoxy/clang-cl.patch \ - external/epoxy/epoxy.android.patch \ )) # vim: set noet sw=4 ts=4: diff -Nru libreoffice-7.3.6/external/harfbuzz/62e803b36173fd096d7ad460dd1d1db9be542593.patch.1 libreoffice-7.3.7/external/harfbuzz/62e803b36173fd096d7ad460dd1d1db9be542593.patch.1 --- libreoffice-7.3.6/external/harfbuzz/62e803b36173fd096d7ad460dd1d1db9be542593.patch.1 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.7/external/harfbuzz/62e803b36173fd096d7ad460dd1d1db9be542593.patch.1 2022-10-27 10:11:14.000000000 +0000 @@ -0,0 +1,29 @@ +From 62e803b36173fd096d7ad460dd1d1db9be542593 Mon Sep 17 00:00:00 2001 +From: Behdad Esfahbod +Date: Wed, 1 Jun 2022 07:38:21 -0600 +Subject: [PATCH] [sbix] Limit glyph extents + +Fixes https://github.com/harfbuzz/harfbuzz/issues/3557 +--- + src/hb-ot-color-sbix-table.hh | 6 ++++++ + test/fuzzing/fonts/sbix-extents.ttf | Bin 0 -> 582 bytes + 2 files changed, 6 insertions(+) + create mode 100644 test/fuzzing/fonts/sbix-extents.ttf + +diff --git a/src/hb-ot-color-sbix-table.hh b/src/hb-ot-color-sbix-table.hh +index 9741ebd450..6efae43cda 100644 +--- a/src/hb-ot-color-sbix-table.hh ++++ b/src/hb-ot-color-sbix-table.hh +@@ -298,6 +298,12 @@ struct sbix + + const PNGHeader &png = *blob->as(); + ++ if (png.IHDR.height >= 65536 || png.IHDR.width >= 65536) ++ { ++ hb_blob_destroy (blob); ++ return false; ++ } ++ + extents->x_bearing = x_offset; + extents->y_bearing = png.IHDR.height + y_offset; + extents->width = png.IHDR.width; diff -Nru libreoffice-7.3.6/external/harfbuzz/UnpackedTarball_harfbuzz.mk libreoffice-7.3.7/external/harfbuzz/UnpackedTarball_harfbuzz.mk --- libreoffice-7.3.6/external/harfbuzz/UnpackedTarball_harfbuzz.mk 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/harfbuzz/UnpackedTarball_harfbuzz.mk 2022-10-27 10:11:14.000000000 +0000 @@ -20,6 +20,7 @@ # be negative": $(eval $(call gb_UnpackedTarball_add_patches,harfbuzz, \ external/harfbuzz/negativeadvance.patch \ + external/harfbuzz/62e803b36173fd096d7ad460dd1d1db9be542593.patch.1 \ )) # vim: set noet sw=4 ts=4: diff -Nru libreoffice-7.3.6/external/libpng/libpng-osx.patch.1 libreoffice-7.3.7/external/libpng/libpng-osx.patch.1 --- libreoffice-7.3.6/external/libpng/libpng-osx.patch.1 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/libpng/libpng-osx.patch.1 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ --- a/pngrutil.c +++ b/pngrutil.c -@@ -419,7 +419,8 @@ +@@ -422,7 +422,8 @@ } #if ZLIB_VERNUM >= 0x1290 && \ diff -Nru libreoffice-7.3.6/external/libxml2/ExternalPackage_libxml2.mk libreoffice-7.3.7/external/libxml2/ExternalPackage_libxml2.mk --- libreoffice-7.3.6/external/libxml2/ExternalPackage_libxml2.mk 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/libxml2/ExternalPackage_libxml2.mk 2022-10-27 10:11:14.000000000 +0000 @@ -21,7 +21,7 @@ $(eval $(call gb_ExternalPackage_add_file,libxml2,$(LIBO_URE_LIB_FOLDER)/libxml2.dll,win32/bin.msvc/libxml2.dll)) endif else # OS!=WNT -$(eval $(call gb_ExternalPackage_add_file,libxml2,$(LIBO_URE_LIB_FOLDER)/libxml2.so.2,.libs/libxml2.so.2.9.$(LIBXML_VERSION_MICRO))) +$(eval $(call gb_ExternalPackage_add_file,libxml2,$(LIBO_URE_LIB_FOLDER)/libxml2.so.2,.libs/libxml2.so.2.10.$(LIBXML_VERSION_MICRO))) endif endif # DISABLE_DYNLOADING diff -Nru libreoffice-7.3.6/external/libxml2/libxml2-android.patch libreoffice-7.3.7/external/libxml2/libxml2-android.patch --- libreoffice-7.3.6/external/libxml2/libxml2-android.patch 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/libxml2/libxml2-android.patch 2022-10-27 10:11:14.000000000 +0000 @@ -2,9 +2,9 @@ +++ misc/build/libxml2-2.7.6/Makefile.in @@ -1635,7 +1635,7 @@ $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS) - check: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) check-recursive --all-am: Makefile $(PROGRAMS) $(LTLIBRARIES) $(SCRIPTS) $(MANS) $(DATA) \ + $(MAKE) $(AM_MAKEFLAGS) check-local + check: check-recursive +-all-am: Makefile $(PROGRAMS) $(LTLIBRARIES) $(SCRIPTS) $(DATA) \ +all-am: Makefile $(LTLIBRARIES) \ config.h install-binPROGRAMS: install-libLTLIBRARIES diff -Nru libreoffice-7.3.6/external/libxml2/libxml2-config.patch.1 libreoffice-7.3.7/external/libxml2/libxml2-config.patch.1 --- libreoffice-7.3.6/external/libxml2/libxml2-config.patch.1 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/libxml2/libxml2-config.patch.1 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -Hack the xml2-config to return paths into WORKDIR. - ---- a/xml2-config.in 2009-12-17 11:45:20.000000000 +0000 -+++ b/xml2-config.in 2009-12-17 11:45:36.000000000 +0000 -@@ -1,9 +1,14 @@ - #! /bin/sh - --prefix=@prefix@ --exec_prefix=@exec_prefix@ --includedir=@includedir@ --libdir=@libdir@ -+#prefix=@prefix@ -+#exec_prefix=@exec_prefix@ -+#includedir=@includedir@ -+#libdir=@libdir@ -+ -+prefix=${WORKDIR}/UnpackedTarball/libxml2 -+exec_prefix=${WORKDIR}/UnpackedTarball/libxml2 -+includedir=${WORKDIR}/UnpackedTarball/libxml2/include -+libdir=${WORKDIR}/UnpackedTarball/libxml2/.libs - cflags= - libs= - -@@ -67,7 +72,8 @@ - ;; - - --cflags) -- cflags="@XML_INCLUDEDIR@ @XML_CFLAGS@" -+ #cflags="@XML_INCLUDEDIR@ @XML_CFLAGS@" -+ cflags="-I${includedir}" - ;; - - --libtool-libs) -@@ -91,7 +96,8 @@ - libs="@XML_LIBDIR@ $libs" - fi - -- libs="$libs @WIN32_EXTRA_LIBADD@" -+ #libs="$libs @WIN32_EXTRA_LIBADD@" -+ libs="-L${libdir} -lxml2 -lm" - ;; - - *) diff -Nru libreoffice-7.3.6/external/libxml2/UnpackedTarball_libxml2.mk libreoffice-7.3.7/external/libxml2/UnpackedTarball_libxml2.mk --- libreoffice-7.3.6/external/libxml2/UnpackedTarball_libxml2.mk 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/libxml2/UnpackedTarball_libxml2.mk 2022-10-27 10:11:14.000000000 +0000 @@ -14,7 +14,6 @@ $(eval $(call gb_UnpackedTarball_update_autoconf_configs,libxml2)) $(eval $(call gb_UnpackedTarball_add_patches,libxml2,\ - external/libxml2/libxml2-config.patch.1 \ external/libxml2/libxml2-global-symbols.patch \ external/libxml2/libxml2-vc10.patch \ $(if $(filter ANDROID,$(OS)),external/libxml2/libxml2-android.patch) \ @@ -23,4 +22,6 @@ external/libxml2/libxml2-icu.patch.0) \ )) +$(eval $(call gb_UnpackedTarball_add_file,libxml2,xml2-config.in,external/libxml2/xml2-config.in)) + # vim: set noet sw=4 ts=4: diff -Nru libreoffice-7.3.6/external/libxml2/xml2-config.in libreoffice-7.3.7/external/libxml2/xml2-config.in --- libreoffice-7.3.6/external/libxml2/xml2-config.in 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.7/external/libxml2/xml2-config.in 2022-10-27 10:11:14.000000000 +0000 @@ -0,0 +1,28 @@ +#! /bin/sh + +while test $# -gt 0; do + case "$1" in + -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; + *) optarg= ;; + esac + + case "$1" in + --version) + echo @VERSION@ + exit 0 + ;; + --cflags) + cflags="$LIBXML_CFLAGS" + ;; + --libs) + libs="$LIBXML_LIBS" + ;; + esac + shift +done + +if test -n "$cflags$libs"; then + echo $cflags $libs +fi + +exit 0 diff -Nru libreoffice-7.3.6/external/nss/nss-android.patch.1 libreoffice-7.3.7/external/nss/nss-android.patch.1 --- libreoffice-7.3.6/external/nss/nss-android.patch.1 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/nss/nss-android.patch.1 2022-10-27 10:11:14.000000000 +0000 @@ -74,7 +74,7 @@ diff -ur nss/nss/coreconf/arch.mk nss/nss/coreconf/arch.mk --- nss/nss/coreconf/arch.mk 2019-11-01 10:29:44.933245745 +0100 +++ nss/nss/coreconf/arch.mk 2019-11-01 10:32:04.347181076 +0100 -@@ -234,7 +234,15 @@ +@@ -213,7 +213,15 @@ # # this should be configurable from the user # diff -Nru libreoffice-7.3.6/external/nss/nss-bz1646594.patch.1 libreoffice-7.3.7/external/nss/nss-bz1646594.patch.1 --- libreoffice-7.3.6/external/nss/nss-bz1646594.patch.1 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/nss/nss-bz1646594.patch.1 2022-10-27 10:11:14.000000000 +0000 @@ -2,7 +2,7 @@ --- nss/nss/coreconf/arch.mk.orig2 2020-08-18 14:33:21.295252404 +0200 +++ nss/nss/coreconf/arch.mk 2020-08-18 14:33:46.360320806 +0200 -@@ -116,8 +116,10 @@ +@@ -94,8 +94,10 @@ OS_RELEASE := $(word 1,$(OS_RELEASE)).$(word 2,$(OS_RELEASE)) endif KERNEL = Linux diff -Nru libreoffice-7.3.6/external/nss/nss.patch libreoffice-7.3.7/external/nss/nss.patch --- libreoffice-7.3.6/external/nss/nss.patch 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/nss/nss.patch 2022-10-27 10:11:14.000000000 +0000 @@ -1,6 +1,6 @@ --- a/a/nspr/configure 2017-08-29 23:44:13.686045013 +0530 +++ b/b/nspr/configure 2017-08-29 23:46:53.774768655 +0530 -@@ -7034,7 +7034,7 @@ +@@ -6794,7 +6794,7 @@ PR_MD_CSRCS=linux.c MKSHLIB='$(CC) $(DSO_LDOPTS) -o $@' DSO_CFLAGS=-fPIC @@ -11,7 +11,7 @@ # combo is not yet good at debugging inlined --- a/nss.orig/nspr/pr/src/misc/prnetdb.c 2017-08-29 23:44:13.690045031 +0530 +++ b/nss/nspr/pr/src/misc/prnetdb.c 2017-08-29 23:47:03.810814019 +0530 -@@ -438,7 +438,7 @@ +@@ -441,7 +441,7 @@ char *buf = *bufp; PRIntn buflen = *buflenp; @@ -51,7 +51,7 @@ --- a/nss.org/nss/coreconf/arch.mk 2017-08-29 23:44:13.646044832 +0530 +++ b/nss/nss/coreconf/arch.mk 2017-08-29 23:45:51.494487134 +0530 -@@ -305,11 +305,17 @@ +@@ -284,11 +284,17 @@ OBJDIR_NAME_COMPILER = $(COMPILER_TAG) endif OBJDIR_NAME_BASE = $(OS_TARGET)$(OS_RELEASE)$(CPU_TAG)$(OBJDIR_NAME_COMPILER)$(LIBC_TAG)$(IMPL_STRATEGY)$(OBJDIR_TAG) @@ -83,7 +83,7 @@ # The default implementation strategy for FreeBSD is pthreads. --- a/nss.org/nss/coreconf/Linux.mk 2017-08-29 23:44:13.642044814 +0530 +++ b/nss/nss/coreconf/Linux.mk 2017-08-29 23:47:26.318915759 +0530 -@@ -147,7 +147,7 @@ +@@ -158,7 +158,7 @@ # Also, -z defs conflicts with Address Sanitizer, which emits relocations # against the libsanitizer runtime built into the main executable. ZDEFS_FLAG = -Wl,-z,defs @@ -92,7 +92,7 @@ LDFLAGS += $(ARCHFLAG) -z noexecstack # On Maemo, we need to use the -rpath-link flag for even the standard system -@@ -177,8 +177,13 @@ +@@ -188,8 +188,13 @@ endif endif @@ -108,7 +108,7 @@ # dependencies in the same directory where it resides. --- a/nss.org/nss/coreconf/rules.mk 2017-08-29 23:44:13.646044832 +0530 +++ b/nss/nss/coreconf/rules.mk 2017-08-29 23:47:37.442966042 +0530 -@@ -261,7 +261,7 @@ +@@ -176,7 +176,7 @@ ifeq (,$(filter-out _WIN%,$(NS_USE_GCC)_$(OS_TARGET))) $(AR) $(subst /,\\,$(OBJS)) else @@ -119,7 +119,7 @@ --- a/nss.org/nss/coreconf/SunOS5.mk 2017-08-29 23:44:13.646044832 +0530 +++ b/nss/nss/coreconf/SunOS5.mk 2017-08-29 23:45:00.902258445 +0530 -@@ -48,8 +48,11 @@ +@@ -46,8 +46,11 @@ # OPTIMIZER += -mno-omit-leaf-frame-pointer -fno-omit-frame-pointer endif else @@ -135,7 +135,7 @@ ifndef BUILD_OPT --- a/nss.org/nss/coreconf/Werror.mk 2017-08-29 23:44:13.646044832 +0530 +++ b/nss/nss/coreconf/Werror.mk 2017-08-29 23:44:23.994091608 +0530 -@@ -94,7 +94,8 @@ +@@ -96,7 +96,8 @@ endif #ndef NSS_ENABLE_WERROR ifeq ($(NSS_ENABLE_WERROR),1) diff -Nru libreoffice-7.3.6/external/poppler/disable-freetype.patch.1 libreoffice-7.3.7/external/poppler/disable-freetype.patch.1 --- libreoffice-7.3.6/external/poppler/disable-freetype.patch.1 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.7/external/poppler/disable-freetype.patch.1 2022-10-27 10:11:14.000000000 +0000 @@ -0,0 +1,41 @@ +disable freetype dependent code + +--- poppler/poppler/Form.cc.orig 2022-09-14 15:46:48.588316681 +0200 ++++ poppler/poppler/Form.cc 2022-09-14 15:48:01.468274551 +0200 +@@ -46,7 +46,7 @@ + #include + #include + #include +-#include "goo/ft_utils.h" ++//#include "goo/ft_utils.h" + #include "goo/gmem.h" + #include "goo/gfile.h" + #include "goo/GooString.h" +@@ -77,8 +77,8 @@ + #include "fofi/FoFiTrueType.h" + #include "fofi/FoFiIdentifier.h" + +-#include +-#include FT_FREETYPE_H ++//#include ++//#include FT_FREETYPE_H + + // return a newly allocated char* containing an UTF16BE string of size length + char *pdfDocEncodingToUTF16(const std::string &orig, int *length) +@@ -2730,6 +2730,8 @@ + + Form::AddFontResult Form::addFontToDefaultResources(const std::string &filepath, int faceIndex, const std::string &fontFamily, const std::string &fontStyle) + { ++ return {}; ++#if 0 + if (!GooString::endsWith(filepath, ".ttf") && !GooString::endsWith(filepath, ".ttc") && !GooString::endsWith(filepath, ".otf")) { + error(errIO, -1, "We only support embedding ttf/ttc/otf fonts for now. The font file for {0:s} {1:s} was {2:s}", fontFamily.c_str(), fontStyle.c_str(), filepath.c_str()); + return {}; +@@ -2939,6 +2941,7 @@ + } + + return { dictFontName, fontDictRef }; ++#endif + } + + std::string Form::getFallbackFontForChar(Unicode uChar, const GfxFont &fontToEmulate) const diff -Nru libreoffice-7.3.6/external/poppler/gcc7-EntityInfo.patch.1 libreoffice-7.3.7/external/poppler/gcc7-EntityInfo.patch.1 --- libreoffice-7.3.6/external/poppler/gcc7-EntityInfo.patch.1 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.7/external/poppler/gcc7-EntityInfo.patch.1 2022-10-27 10:11:14.000000000 +0000 @@ -0,0 +1,48 @@ +gcc 7.3.1 says: + +workdir/UnpackedTarball/poppler/poppler/CertificateInfo.cc:42:34: error: function ‘X509CertificateInfo::EntityInfo& X509CertificateInfo::EntityInfo::operator=(X509CertificateInfo::EntityInfo&&)’ defaulted on its redeclaration with an exception-specification that differs from the implicit exception-specification ‘’ + +--- poppler/poppler/CertificateInfo.h.orig 2022-09-14 19:32:12.426351385 +0200 ++++ poppler/poppler/CertificateInfo.h 2022-09-14 19:32:18.947347812 +0200 +@@ -70,7 +70,7 @@ + ~EntityInfo(); + + EntityInfo(EntityInfo &&) noexcept; +- EntityInfo &operator=(EntityInfo &&) noexcept; ++ EntityInfo &operator=(EntityInfo &&) /*noexcept*/; + + EntityInfo(const EntityInfo &) = delete; + EntityInfo &operator=(const EntityInfo &) = delete; +--- poppler/poppler/CertificateInfo.cc.orig 2022-09-14 19:31:10.225385467 +0200 ++++ poppler/poppler/CertificateInfo.cc 2022-09-14 19:31:12.572384182 +0200 +@@ -39,7 +39,7 @@ + + X509CertificateInfo::EntityInfo::EntityInfo(X509CertificateInfo::EntityInfo &&other) noexcept = default; + +-X509CertificateInfo::EntityInfo &X509CertificateInfo::EntityInfo::operator=(X509CertificateInfo::EntityInfo &&other) noexcept = default; ++X509CertificateInfo::EntityInfo &X509CertificateInfo::EntityInfo::operator=(X509CertificateInfo::EntityInfo &&other) /*noexcept*/ = default; + + X509CertificateInfo::X509CertificateInfo() : ku_extensions(KU_NONE), cert_version(-1), is_self_signed(false) { } + +--- poppler/poppler/GfxFont.cc.orig 2022-09-14 20:24:32.569607333 +0200 ++++ poppler/poppler/GfxFont.cc 2022-09-14 20:24:52.323596186 +0200 +@@ -180,7 +180,7 @@ + + GfxFontLoc::GfxFontLoc(GfxFontLoc &&other) noexcept = default; + +-GfxFontLoc &GfxFontLoc::operator=(GfxFontLoc &&other) noexcept = default; ++GfxFontLoc &GfxFontLoc::operator=(GfxFontLoc &&other) /*noexcept*/ = default; + + void GfxFontLoc::setPath(GooString *pathA) + { +--- poppler/poppler/GfxFont.h.orig 2022-09-14 20:24:30.784608340 +0200 ++++ poppler/poppler/GfxFont.h 2022-09-14 20:25:08.850586861 +0200 +@@ -124,7 +124,7 @@ + GfxFontLoc(const GfxFontLoc &) = delete; + GfxFontLoc(GfxFontLoc &&) noexcept; + GfxFontLoc &operator=(const GfxFontLoc &) = delete; +- GfxFontLoc &operator=(GfxFontLoc &&other) noexcept; ++ GfxFontLoc &operator=(GfxFontLoc &&other) /*noexcept*/; + + // Set the 'path' string from a GooString on the heap. + // Ownership of the object is taken. diff -Nru libreoffice-7.3.6/external/poppler/pch.patch.0 libreoffice-7.3.7/external/poppler/pch.patch.0 --- libreoffice-7.3.6/external/poppler/pch.patch.0 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/poppler/pch.patch.0 2022-10-27 10:11:14.000000000 +0000 @@ -2,10 +2,10 @@ +++ ./goo/gdir.h 2021-11-03 15:16:04.306277081 +0100 @@ -37,6 +37,8 @@ - #include "poppler-config.h" + #include +#include "gfile.h" + class GooString; - //------------------------------------------------------------------------ + #if defined(_WIN32) diff -Nru libreoffice-7.3.6/external/poppler/poppler-config.patch.1 libreoffice-7.3.7/external/poppler/poppler-config.patch.1 --- libreoffice-7.3.6/external/poppler/poppler-config.patch.1 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/poppler/poppler-config.patch.1 2022-10-27 10:11:14.000000000 +0000 @@ -16,7 +16,7 @@ index 0fbd336a..451213f8 100644 --- /dev/null +++ b/config.h -@@ -0,0 +1,223 @@ +@@ -0,0 +1,220 @@ +/* config.h. Generated from config.h.cmake by cmake. */ + +/* Build against libcurl. */ @@ -105,9 +105,6 @@ +#define HAVE_TIMEGM 1 +#endif + -+/* Define if you have the iconv() function and it works. */ -+/* #undef HAVE_ICONV */ -+ +/* Define to 1 if you have the `z' library (-lz). */ +/* #undef HAVE_LIBZ */ + @@ -176,7 +173,7 @@ +#define PACKAGE_NAME "poppler" + +/* Define to the full name and version of this package. */ -+#define PACKAGE_STRING "poppler 21.11.0" ++#define PACKAGE_STRING "poppler 22.09.0" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "poppler" @@ -185,7 +182,7 @@ +#define PACKAGE_URL "" + +/* Define to the version of this package. */ -+#define PACKAGE_VERSION "21.11.0" ++#define PACKAGE_VERSION "22.09.0" + +/* Poppler data dir */ +#define POPPLER_DATADIR "/usr/local/share/poppler" @@ -203,7 +200,7 @@ +/* #undef USE_FLOAT */ + +/* Version number of package */ -+#define VERSION "21.11.0" ++#define VERSION "22.09.0" + +#if defined(__APPLE__) +#elif defined (_WIN32) @@ -229,7 +226,7 @@ +#define popen _popen +#define pclose _pclose +#define strncasecmp _strnicmp -+// error C4005: "strcasecmp": macro redefinition #define strcasecmp _stricmp ++#define strcasecmp _stricmp +#endif + +/* Number of bits in a file offset, on hosts where this is settable. */ @@ -250,7 +247,7 @@ +// +// poppler-config.h +// -+// Copyright 1996-2011 Glyph & Cog, LLC ++// Copyright 1996-2011, 2022 Glyph & Cog, LLC +// +//======================================================================== + @@ -284,7 +281,7 @@ + +/* Defines the poppler version. */ +#ifndef POPPLER_VERSION -+#define POPPLER_VERSION "21.11.0" ++#define POPPLER_VERSION "22.09.0" +#endif + +/* Use single precision arithmetic in the Splash backend */ @@ -376,8 +373,8 @@ +//------------------------------------------------------------------------ + +// copyright notice -+#define popplerCopyright "Copyright 2005-2021 The Poppler Developers - http://poppler.freedesktop.org" -+#define xpdfCopyright "Copyright 1996-2011 Glyph & Cog, LLC" ++#define popplerCopyright "Copyright 2005-2022 The Poppler Developers - http://poppler.freedesktop.org" ++#define xpdfCopyright "Copyright 1996-2011, 2022 Glyph & Cog, LLC" + +//------------------------------------------------------------------------ +// Win32 stuff @@ -436,9 +433,9 @@ + +#include "poppler-global.h" + -+#define POPPLER_VERSION "21.11.0" -+#define POPPLER_VERSION_MAJOR 21 -+#define POPPLER_VERSION_MINOR 11 ++#define POPPLER_VERSION "22.09.0" ++#define POPPLER_VERSION_MAJOR 22 ++#define POPPLER_VERSION_MINOR 9 +#define POPPLER_VERSION_MICRO 0 + +namespace poppler diff -Nru libreoffice-7.3.6/external/poppler/StaticLibrary_poppler.mk libreoffice-7.3.7/external/poppler/StaticLibrary_poppler.mk --- libreoffice-7.3.6/external/poppler/StaticLibrary_poppler.mk 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/poppler/StaticLibrary_poppler.mk 2022-10-27 10:11:14.000000000 +0000 @@ -86,6 +86,8 @@ UnpackedTarball/poppler/poppler/Decrypt \ UnpackedTarball/poppler/poppler/Dict \ UnpackedTarball/poppler/poppler/Error \ + UnpackedTarball/poppler/poppler/FDPDFDocBuilder \ + UnpackedTarball/poppler/poppler/FILECacheLoader \ UnpackedTarball/poppler/poppler/FileSpec \ UnpackedTarball/poppler/poppler/FontEncodingTables \ UnpackedTarball/poppler/poppler/Form \ @@ -96,6 +98,7 @@ UnpackedTarball/poppler/poppler/GfxState \ UnpackedTarball/poppler/poppler/GlobalParams \ UnpackedTarball/poppler/poppler/Hints \ + UnpackedTarball/poppler/poppler/ImageEmbeddingUtils \ UnpackedTarball/poppler/poppler/JArithmeticDecoder \ UnpackedTarball/poppler/poppler/JBIG2Stream \ UnpackedTarball/poppler/poppler/JSInfo \ @@ -132,8 +135,6 @@ UnpackedTarball/poppler/poppler/TextOutputDev \ UnpackedTarball/poppler/poppler/PageLabelInfo \ UnpackedTarball/poppler/poppler/SecurityHandler \ - UnpackedTarball/poppler/poppler/StdinCachedFile \ - UnpackedTarball/poppler/poppler/StdinPDFDocBuilder \ UnpackedTarball/poppler/poppler/Sound \ UnpackedTarball/poppler/poppler/ViewerPreferences \ UnpackedTarball/poppler/poppler/Movie \ diff -Nru libreoffice-7.3.6/external/poppler/UnpackedTarball_poppler.mk libreoffice-7.3.7/external/poppler/UnpackedTarball_poppler.mk --- libreoffice-7.3.6/external/poppler/UnpackedTarball_poppler.mk 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/poppler/UnpackedTarball_poppler.mk 2022-10-27 10:11:14.000000000 +0000 @@ -16,6 +16,8 @@ $(eval $(call gb_UnpackedTarball_add_patches,poppler,\ external/poppler/poppler-config.patch.1 \ external/poppler/pch.patch.0 \ + external/poppler/disable-freetype.patch.1 \ + external/poppler/gcc7-EntityInfo.patch.1 \ )) ifneq ($(filter -fsanitize=%,$(CC)),) diff -Nru libreoffice-7.3.6/external/postgresql/arm64.patch.1 libreoffice-7.3.7/external/postgresql/arm64.patch.1 --- libreoffice-7.3.6/external/postgresql/arm64.patch.1 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/postgresql/arm64.patch.1 2022-10-27 10:11:14.000000000 +0000 @@ -40,7 +40,7 @@ --- postgresql.org/src/tools/msvc/Solution.pm 2021-03-14 02:09:15.288060770 +0100 +++ postgresql/src/tools/msvc/Solution.pm 2021-03-14 02:12:22.351726582 +0100 @@ -62,10 +62,7 @@ - if (1) #($^O eq "MSWin32") + if ($^O eq "MSWin32") { # Examine CL help output to determine if we are in 32 or 64-bit mode. - my $output = `cl /? 2>&1`; diff -Nru libreoffice-7.3.6/external/postgresql/postgres-msvc-build.patch.1 libreoffice-7.3.7/external/postgresql/postgres-msvc-build.patch.1 --- libreoffice-7.3.6/external/postgresql/postgres-msvc-build.patch.1 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/postgresql/postgres-msvc-build.patch.1 2022-10-27 10:11:14.000000000 +0000 @@ -42,7 +42,7 @@ { # Examine CL help output to determine if we are in 32 or 64-bit mode. my $output = `cl /? 2>&1`; -@@ -1081,7 +1081,7 @@ +@@ -1100,7 +1100,7 @@ } if ($fld ne "") { @@ -53,7 +53,7 @@ EndProject --- postgresql/src/tools/msvc/VSObjectFactory.pm.orig 2021-01-19 18:06:42.633421700 +0100 +++ postgresql/src/tools/msvc/VSObjectFactory.pm 2021-01-19 18:06:28.663523200 +0100 -@@ -111,7 +111,7 @@ +@@ -131,7 +131,7 @@ sub DetermineVisualStudioVersion { @@ -85,7 +85,7 @@ my $sslout = `$opensslcmd`; $? >> 8 == 0 -@@ -964,8 +964,8 @@ +@@ -967,8 +967,8 @@ # On both Win32 and Win64 the same library # names are used without a debugging context. $dbgsuffix = 0; @@ -96,7 +96,7 @@ } $proj->AddLibrary($self->{options}->{openssl} . $libsslpath, -@@ -990,9 +990,9 @@ +@@ -993,9 +993,9 @@ # to be here, so don't ask for it in last # parameter. $proj->AddLibrary( diff -Nru libreoffice-7.3.6/external/postgresql/postgresql.exit.patch.0 libreoffice-7.3.7/external/postgresql/postgresql.exit.patch.0 --- libreoffice-7.3.6/external/postgresql/postgresql.exit.patch.0 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/postgresql/postgresql.exit.patch.0 2022-10-27 10:11:14.000000000 +0000 @@ -1,7 +1,7 @@ # error: implicitly declaring library function 'exit' with type 'void (int) __attribute__((noreturn))' [-Werror,-Wimplicit-function-declaration] --- configure +++ configure -@@ -24565,6 +24565,7 @@ +@@ -16821,6 +16821,7 @@ else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ @@ -9,7 +9,7 @@ typedef long int ac_int64; /* -@@ -24702,6 +24702,7 @@ +@@ -16905,6 +16905,7 @@ else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ diff -Nru libreoffice-7.3.6/external/postgresql/windows.patch.0 libreoffice-7.3.7/external/postgresql/windows.patch.0 --- libreoffice-7.3.6/external/postgresql/windows.patch.0 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/postgresql/windows.patch.0 2022-10-27 10:11:14.000000000 +0000 @@ -1,6 +1,6 @@ --- src/port/chklocale.c +++ src/port/chklocale.c -@@ -211,7 +211,7 @@ +@@ -220,7 +220,7 @@ { r = malloc(16); /* excess */ if (r != NULL) diff -Nru libreoffice-7.3.6/external/python3/0001-3.6-bpo-17239-Disable-external-entities-in-SAX-parse.patch.1 libreoffice-7.3.7/external/python3/0001-3.6-bpo-17239-Disable-external-entities-in-SAX-parse.patch.1 --- libreoffice-7.3.6/external/python3/0001-3.6-bpo-17239-Disable-external-entities-in-SAX-parse.patch.1 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/python3/0001-3.6-bpo-17239-Disable-external-entities-in-SAX-parse.patch.1 1970-01-01 00:00:00.000000000 +0000 @@ -1,59 +0,0 @@ -From 582d188e6e3487180891f1fc457a80dec8be26a8 Mon Sep 17 00:00:00 2001 -From: Christian Heimes -Date: Mon, 24 Sep 2018 14:38:31 +0200 -Subject: [PATCH] [3.6] bpo-17239: Disable external entities in SAX parser - (GH-9217) (GH-9512) - -The SAX parser no longer processes general external entities by default -to increase security. Before, the parser created network connections -to fetch remote files or loaded local files from the file system for DTD -and entities. - -Signed-off-by: Christian Heimes - -https://bugs.python.org/issue17239. -(cherry picked from commit 17b1d5d4e36aa57a9b25a0e694affbd1ee637e45) - -Co-authored-by: Christian Heimes - - - -https://bugs.python.org/issue17239 ---- - Doc/library/xml.dom.pulldom.rst | 14 +++++ - Doc/library/xml.rst | 6 +- - Doc/library/xml.sax.rst | 8 +++ - Doc/whatsnew/3.6.rst | 18 +++++- - Lib/test/test_pulldom.py | 7 +++ - Lib/test/test_sax.py | 60 ++++++++++++++++++- - Lib/test/test_xml_etree.py | 13 ++++ - Lib/xml/sax/expatreader.py | 2 +- - .../2018-09-11-18-30-55.bpo-17239.kOpwK2.rst | 3 + - 9 files changed, 125 insertions(+), 6 deletions(-) - create mode 100644 Misc/NEWS.d/next/Security/2018-09-11-18-30-55.bpo-17239.kOpwK2.rst - -diff --git a/Lib/xml/sax/expatreader.py b/Lib/xml/sax/expatreader.py -index 421358fa5b..5066ffc2fa 100644 ---- a/Lib/xml/sax/expatreader.py -+++ b/Lib/xml/sax/expatreader.py -@@ -95,7 +95,7 @@ class ExpatParser(xmlreader.IncrementalParser, xmlreader.Locator): - self._lex_handler_prop = None - self._parsing = 0 - self._entity_stack = [] -- self._external_ges = 1 -+ self._external_ges = 0 - self._interning = None - - # XMLReader methods -diff --git a/Misc/NEWS.d/next/Security/2018-09-11-18-30-55.bpo-17239.kOpwK2.rst b/Misc/NEWS.d/next/Security/2018-09-11-18-30-55.bpo-17239.kOpwK2.rst -new file mode 100644 -index 0000000000..8dd0fe8c1b ---- /dev/null -+++ b/Misc/NEWS.d/next/Security/2018-09-11-18-30-55.bpo-17239.kOpwK2.rst -@@ -0,0 +1,3 @@ -+The xml.sax and xml.dom.minidom parsers no longer processes external -+entities by default. External DTD and ENTITY declarations no longer -+load files or create network connections. --- -2.20.1 - diff -Nru libreoffice-7.3.6/external/python3/darwin.patch.0 libreoffice-7.3.7/external/python3/darwin.patch.0 --- libreoffice-7.3.6/external/python3/darwin.patch.0 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/python3/darwin.patch.0 2022-10-27 10:11:14.000000000 +0000 @@ -8,15 +8,3 @@ .text /* ffi_call_unix64 (void *args, unsigned long bytes, unsigned flags, ---- configure -+++ configure -@@ -5167,7 +5167,9 @@ - fi - - -+if test "$(uname -s)" = Darwin; then MULTIARCH=; else - MULTIARCH=$($CC --print-multiarch 2>/dev/null) -+fi - - - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the platform triplet based on compiler characteristics" >&5 diff -Nru libreoffice-7.3.6/external/python3/i100492-freebsd.patch.1 libreoffice-7.3.7/external/python3/i100492-freebsd.patch.1 --- libreoffice-7.3.6/external/python3/i100492-freebsd.patch.1 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/python3/i100492-freebsd.patch.1 2022-10-27 10:11:14.000000000 +0000 @@ -2,7 +2,7 @@ --- Python-3.3.0/Python/thread_pthread.h 2012-11-28 09:00:41.097955124 +0000 +++ Python-3.3.0/Python/thread_pthread.h 2012-11-28 09:01:13.018329351 +0000 -@@ -186,6 +189,9 @@ +@@ -238,6 +238,9 @@ { pthread_t th; int status; @@ -12,7 +12,7 @@ #if defined(THREAD_STACK_SIZE) || defined(PTHREAD_SYSTEM_SCHED_SUPPORTED) pthread_attr_t attrs; #endif -@@ -214,6 +220,10 @@ +@@ -277,6 +280,10 @@ callback->func = func; callback->arg = arg; @@ -23,7 +23,7 @@ status = pthread_create(&th, #if defined(THREAD_STACK_SIZE) || defined(PTHREAD_SYSTEM_SCHED_SUPPORTED) &attrs, -@@ -225,6 +234,9 @@ +@@ -285,6 +292,9 @@ #endif pythread_wrapper, callback); diff -Nru libreoffice-7.3.6/external/python3/internal-zlib.patch.0 libreoffice-7.3.7/external/python3/internal-zlib.patch.0 --- libreoffice-7.3.6/external/python3/internal-zlib.patch.0 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/python3/internal-zlib.patch.0 2022-10-27 10:11:14.000000000 +0000 @@ -19,7 +19,7 @@ --- setup.py +++ setup.py -@@ -1362,7 +1362,7 @@ +@@ -1483,7 +1483,7 @@ # # You can upgrade zlib to version 1.1.4 yourself by going to # http://www.gzip.org/zlib/ @@ -28,7 +28,7 @@ have_zlib = False if zlib_inc is not None: zlib_h = zlib_inc[0] + '/zlib.h' -@@ -1379,13 +1379,13 @@ +@@ -1500,13 +1500,13 @@ version = line.split()[2] break if version >= version_req: @@ -44,7 +44,7 @@ extra_link_args=zlib_extra_link_args)) have_zlib = True else: -@@ -1399,7 +1399,7 @@ +@@ -1520,7 +1520,7 @@ # crc32 if we have it. Otherwise binascii uses its own. if have_zlib: extra_compile_args = ['-DUSE_ZLIB_CRC32'] diff -Nru libreoffice-7.3.6/external/python3/macos-11.patch.0 libreoffice-7.3.7/external/python3/macos-11.patch.0 --- libreoffice-7.3.6/external/python3/macos-11.patch.0 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/python3/macos-11.patch.0 2022-10-27 10:11:14.000000000 +0000 @@ -1,6 +1,6 @@ --- setup.py +++ setup.py -@@ -670,7 +670,10 @@ +@@ -655,7 +655,10 @@ add_dir_to_list(self.compiler.include_dirs, sysconfig.get_config_var("INCLUDEDIR")) @@ -14,7 +14,7 @@ # if a file is found in one of those directories, it can --- Modules/_posixsubprocess.c +++ Modules/_posixsubprocess.c -@@ -31,6 +31,8 @@ +@@ -30,6 +30,8 @@ # define SYS_getdents64 __NR_getdents64 #endif @@ -23,7 +23,7 @@ #if defined(__sun) && defined(__SVR4) /* readdir64 is used to work around Solaris 9 bug 6395699. */ # define readdir readdir64 -@@ -202,7 +202,7 @@ +@@ -201,7 +203,7 @@ #endif #ifdef _SC_OPEN_MAX local_max_fd = sysconf(_SC_OPEN_MAX); diff -Nru libreoffice-7.3.6/external/python3/python-3.3.0-darwin.patch.1 libreoffice-7.3.7/external/python3/python-3.3.0-darwin.patch.1 --- libreoffice-7.3.6/external/python3/python-3.3.0-darwin.patch.1 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/python3/python-3.3.0-darwin.patch.1 2022-10-27 10:11:14.000000000 +0000 @@ -5,7 +5,7 @@ diff -ru python3.orig/configure python3/configure --- python3.orig/configure 2015-07-26 17:36:11.808497783 +0200 +++ python3/configure 2015-07-26 17:38:49.016508337 +0200 -@@ -6794,7 +6794,20 @@ +@@ -7385,7 +7385,20 @@ then case "$UNIVERSAL_ARCHS" in 32-bit) @@ -30,7 +30,7 @@ diff -ru python3.orig/Mac/Makefile.in python3/Mac/Makefile.in --- python3.orig/Mac/Makefile.in 2015-07-05 18:50:07.000000000 +0200 +++ python3/Mac/Makefile.in 2015-07-26 17:40:14.860514100 +0200 -@@ -43,7 +43,7 @@ +@@ -44,7 +44,7 @@ INSTALL_SCRIPT= @INSTALL_SCRIPT@ INSTALL_DATA=@INSTALL_DATA@ LN=@LN@ diff -Nru libreoffice-7.3.6/external/python3/python-3.3.3-disable-obmalloc.patch.0 libreoffice-7.3.7/external/python3/python-3.3.3-disable-obmalloc.patch.0 --- libreoffice-7.3.6/external/python3/python-3.3.3-disable-obmalloc.patch.0 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/python3/python-3.3.3-disable-obmalloc.patch.0 2022-10-27 10:11:14.000000000 +0000 @@ -1,6 +1,6 @@ --- Objects/obmalloc.c +++ Objects/obmalloc.c -@@ -413,8 +413,8 @@ +@@ -712,8 +712,8 @@ #ifdef WITH_PYMALLOC @@ -10,7 +10,7 @@ /* If we're using GCC, use __builtin_expect() to reduce overhead of the valgrind checks */ -@@ -1181,7 +1181,7 @@ +@@ -1430,7 +1430,7 @@ #ifdef WITH_VALGRIND if (UNLIKELY(running_on_valgrind == -1)) { diff -Nru libreoffice-7.3.6/external/python3/python-3.3.3-elf-rpath.patch.1 libreoffice-7.3.7/external/python3/python-3.3.3-elf-rpath.patch.1 --- libreoffice-7.3.6/external/python3/python-3.3.3-elf-rpath.patch.1 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/python3/python-3.3.3-elf-rpath.patch.1 2022-10-27 10:11:14.000000000 +0000 @@ -5,7 +5,7 @@ diff -ru python3.orig/Makefile.pre.in python3/Makefile.pre.in --- python3.orig/Makefile.pre.in 2015-07-26 20:29:07.126194320 +0200 +++ python3/Makefile.pre.in 2015-07-26 20:37:21.814227530 +0200 -@@ -563,7 +563,7 @@ +@@ -566,7 +566,7 @@ # Build the interpreter $(BUILDPYTHON): Programs/python.o $(LIBRARY) $(LDLIBRARY) $(PY3LIBRARY) @@ -14,7 +14,7 @@ platform: $(BUILDPYTHON) pybuilddir.txt $(RUNSHARED) $(PYTHON_FOR_BUILD) -c 'import sys ; from sysconfig import get_platform ; print("%s-%d.%d" % (get_platform(), *sys.version_info[:2]))' >platform -@@ -625,7 +625,7 @@ +@@ -628,7 +628,7 @@ fi libpython3.so: libpython$(LDVERSION).so diff -Nru libreoffice-7.3.6/external/python3/python-3.5.4-msvc-disable.patch.1 libreoffice-7.3.7/external/python3/python-3.5.4-msvc-disable.patch.1 --- libreoffice-7.3.6/external/python3/python-3.5.4-msvc-disable.patch.1 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/python3/python-3.5.4-msvc-disable.patch.1 2022-10-27 10:11:14.000000000 +0000 @@ -3,7 +3,7 @@ diff -ru python3.orig/PCbuild/pcbuild.sln python3/PCbuild/pcbuild.sln --- python3.orig/PCbuild/pcbuild.sln 2017-08-10 00:04:44.359879894 +0200 +++ python3/PCbuild/pcbuild.sln 2017-08-10 00:13:51.179873748 +0200 -@@ -12,8 +12,6 @@ +@@ -15,8 +15,6 @@ EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pythoncore", "pythoncore.vcxproj", "{CF7AC3D1-E2DF-41D2-BEA6-1E2556CDEA26}" EndProject @@ -12,7 +12,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "winsound", "winsound.vcxproj", "{28B5D777-DDF2-4B6B-B34F-31D938813856}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_decimal", "_decimal.vcxproj", "{0E9791DB-593A-465F-98BC-681011311617}" -@@ -28,34 +26,20 @@ +@@ -31,34 +29,20 @@ EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_socket", "_socket.vcxproj", "{86937F53-C189-40EF-8CE8-8759D8E7D480}" EndProject @@ -47,7 +47,7 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_multiprocessing", "_multiprocessing.vcxproj", "{9E48B300-37D1-11DD-8C41-005056C00008}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "python3dll", "python3dll.vcxproj", "{885D4898-D08D-4091-9C40-C700CFE3FC5A}" -@@ -75,8 +75,6 @@ +@@ -93,8 +77,6 @@ EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "_queue", "_queue.vcxproj", "{78D80A15-BD8C-44E2-B49E-1F05B0A0A687}" EndProject diff -Nru libreoffice-7.3.6/external/python3/python-3.5.tweak.strip.soabi.patch libreoffice-7.3.7/external/python3/python-3.5.tweak.strip.soabi.patch --- libreoffice-7.3.6/external/python3/python-3.5.tweak.strip.soabi.patch 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/python3/python-3.5.tweak.strip.soabi.patch 2022-10-27 10:11:14.000000000 +0000 @@ -1,7 +1,7 @@ diff -ru python3.orig/configure python3/configure --- misc/python3.orig/configure 2015-07-26 21:14:31.127377193 +0200 +++ misc/python3/configure 2015-07-26 21:21:34.975405648 +0200 -@@ -14388,7 +14388,7 @@ +@@ -15229,7 +15229,7 @@ $as_echo "$ABIFLAGS" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking SOABI" >&5 $as_echo_n "checking SOABI... " >&6; } diff -Nru libreoffice-7.3.6/external/python3/python-3.7.6-msvc-ssl.patch.1 libreoffice-7.3.7/external/python3/python-3.7.6-msvc-ssl.patch.1 --- libreoffice-7.3.6/external/python3/python-3.7.6-msvc-ssl.patch.1 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/python3/python-3.7.6-msvc-ssl.patch.1 2022-10-27 10:11:14.000000000 +0000 @@ -2,7 +2,7 @@ --- python3/PCbuild/_ssl.vcxproj.orig2 2019-12-23 15:54:19.254298900 +0100 +++ python3/PCbuild/_ssl.vcxproj 2019-12-23 15:54:24.693251200 +0100 -@@ -67,9 +67,6 @@ +@@ -99,9 +99,6 @@ diff -Nru libreoffice-7.3.6/external/python3/ubsan.patch.0 libreoffice-7.3.7/external/python3/ubsan.patch.0 --- libreoffice-7.3.6/external/python3/ubsan.patch.0 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/python3/ubsan.patch.0 2022-10-27 10:11:14.000000000 +0000 @@ -20,7 +20,7 @@ This is clc or stc, together with the first byte of the jmp. */ --- Modules/posixmodule.c +++ Modules/posixmodule.c -@@ -23,6 +23,9 @@ +@@ -13998,6 +13998,9 @@ }; static int @@ -32,7 +32,7 @@ #ifdef F_OK --- Objects/listobject.c +++ Objects/listobject.c -@@ -548,7 +548,7 @@ +@@ -554,7 +554,7 @@ dest[i] = v; } src = b->ob_item; diff -Nru libreoffice-7.3.6/external/redland/raptor/libxml-override.patch libreoffice-7.3.7/external/redland/raptor/libxml-override.patch --- libreoffice-7.3.6/external/redland/raptor/libxml-override.patch 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/redland/raptor/libxml-override.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,13 +0,0 @@ ---- configure -+++ configure -@@ -14387,8 +14387,8 @@ - - libxml_source=no - if test "X$XML_CONFIG" != "X"; then -- LIBXML_CFLAGS=`$XML_CONFIG --cflags` -- LIBXML_LIBS=`$XML_CONFIG --libs` -+ : ${LIBXML_CFLAGS=`$XML_CONFIG --cflags`} -+ : ${LIBXML_LIBS=`$XML_CONFIG --libs`} - - CPPFLAGS="$LIBXML_CFLAGS $CPPFLAGS" - LIBS="$LIBS $LIBXML_LIBS" diff -Nru libreoffice-7.3.6/external/redland/UnpackedTarball_raptor.mk libreoffice-7.3.7/external/redland/UnpackedTarball_raptor.mk --- libreoffice-7.3.6/external/redland/UnpackedTarball_raptor.mk 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/external/redland/UnpackedTarball_raptor.mk 2022-10-27 10:11:14.000000000 +0000 @@ -30,7 +30,6 @@ external/redland/raptor/0001-Calcualte-max-nspace-declarations-correctly-for-XML-.patch.1 \ external/redland/raptor/0001-CVE-2020-25713-raptor2-malformed-input-file-can-lead.patch.1 \ external/redland/raptor/libtool.patch \ - external/redland/raptor/libxml-override.patch \ )) # vim: set noet sw=4 ts=4: diff -Nru libreoffice-7.3.6/.gitreview libreoffice-7.3.7/.gitreview --- libreoffice-7.3.6/.gitreview 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/.gitreview 2022-10-27 10:11:14.000000000 +0000 @@ -3,5 +3,5 @@ port=29418 project=core defaultremote=logerrit -defaultbranch=libreoffice-7-3-6 +defaultbranch=libreoffice-7-3-7 diff -Nru libreoffice-7.3.6/helpcontent2/source/auxiliary/scalc.tree libreoffice-7.3.7/helpcontent2/source/auxiliary/scalc.tree --- libreoffice-7.3.6/helpcontent2/source/auxiliary/scalc.tree 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/helpcontent2/source/auxiliary/scalc.tree 2022-10-27 10:11:13.000000000 +0000 @@ -192,7 +192,7 @@ Reading and Writing values to Ranges Formatting Borders in Calc with Macros - + Deactivating Automatic Changes Consolidating Data Applying Goal Seek diff -Nru libreoffice-7.3.6/i18npool/source/transliteration/fullwidthToHalfwidth.cxx libreoffice-7.3.7/i18npool/source/transliteration/fullwidthToHalfwidth.cxx --- libreoffice-7.3.6/i18npool/source/transliteration/fullwidthToHalfwidth.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/i18npool/source/transliteration/fullwidthToHalfwidth.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -50,7 +50,7 @@ const OUString& newStr = i18nutil::widthfolding::decompose_ja_voiced_sound_marks (inStr, startPos, nCount, pOffset); // One to One mapping - return transliteration_OneToOne::transliterateImpl( newStr, 0, newStr.getLength(), pOffset); + return transliteration_OneToOne::transliterateImpl( newStr, 0, newStr.getLength(), nullptr); } sal_Unicode SAL_CALL diff -Nru libreoffice-7.3.6/include/comphelper/SelectionMultiplex.hxx libreoffice-7.3.7/include/comphelper/SelectionMultiplex.hxx --- libreoffice-7.3.6/include/comphelper/SelectionMultiplex.hxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/include/comphelper/SelectionMultiplex.hxx 2022-10-27 10:11:14.000000000 +0000 @@ -81,6 +81,8 @@ void unlock(); /// get the lock count sal_Int32 locked() const { return m_nLockCount; } + + void dispose(); }; diff -Nru libreoffice-7.3.6/include/drawinglayer/geometry/viewinformation2d.hxx libreoffice-7.3.7/include/drawinglayer/geometry/viewinformation2d.hxx --- libreoffice-7.3.6/include/drawinglayer/geometry/viewinformation2d.hxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/include/drawinglayer/geometry/viewinformation2d.hxx 2022-10-27 10:11:14.000000000 +0000 @@ -121,6 +121,7 @@ /// data access const basegfx::B2DHomMatrix& getObjectTransformation() const; const basegfx::B2DHomMatrix& getViewTransformation() const; + /// Empty viewport means everything is visible. const basegfx::B2DRange& getViewport() const; double getViewTime() const; const css::uno::Reference& getVisualizedPage() const; @@ -130,6 +131,7 @@ const basegfx::B2DHomMatrix& getInverseObjectToViewTransformation() const; /// On-demand prepared Viewport in discrete units for convenience + /// Empty viewport means everything is visible. const basegfx::B2DRange& getDiscreteViewport() const; /** support reduced DisplayQuality, PropertyName is 'ReducedDisplayQuality'. This diff -Nru libreoffice-7.3.6/include/svl/hint.hxx libreoffice-7.3.7/include/svl/hint.hxx --- libreoffice-7.3.6/include/svl/hint.hxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/include/svl/hint.hxx 2022-10-27 10:11:14.000000000 +0000 @@ -73,7 +73,6 @@ ScDbAreasChanged, ScAreasChanged, ScTablesChanged, - ScTablesRenamed, ScDrawChanged, ScDocNameChanged, ScAreaLinksChanged, @@ -166,7 +165,6 @@ case SfxHintId::ScDbAreasChanged: return stream << "ScDbAreasChanged"; case SfxHintId::ScAreasChanged: return stream << "ScAreasChanged"; case SfxHintId::ScTablesChanged: return stream << "ScTablesChanged"; - case SfxHintId::ScTablesRenamed: return stream << "ScTablesRenamed"; case SfxHintId::ScDrawChanged: return stream << "ScDrawChanged"; case SfxHintId::ScDocNameChanged: return stream << "ScDocNameChanged"; case SfxHintId::ScAreaLinksChanged: return stream << "ScAreaLinksChanged"; diff -Nru libreoffice-7.3.6/include/svl/sharedstringpool.hxx libreoffice-7.3.7/include/svl/sharedstringpool.hxx --- libreoffice-7.3.6/include/svl/sharedstringpool.hxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/include/svl/sharedstringpool.hxx 2022-10-27 10:11:14.000000000 +0000 @@ -53,8 +53,9 @@ */ void purge(); + // For unit tests. Note that an "empty" pool may contain some internal items, + // such as SharedString::getEmptyString(). size_t getCount() const; - size_t getCountIgnoreCase() const; }; } diff -Nru libreoffice-7.3.6/librelogo/source/LibreLogo/LibreLogo.py libreoffice-7.3.7/librelogo/source/LibreLogo/LibreLogo.py --- libreoffice-7.3.6/librelogo/source/LibreLogo/LibreLogo.py 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/librelogo/source/LibreLogo/LibreLogo.py 2022-10-27 10:11:14.000000000 +0000 @@ -35,7 +35,7 @@ __lng__[lng][i] = __lng_fallback__[i][lng] except: try: - __lng__[lng][i] = __lng_fallback__[i][lng[:2]] + __lng__[lng][i] = __lng_fallback__[i][lng.split('_')[0]] except: __lng__[lng][i] = __lng_fallback__[i]["en_US"] return __lng__[lng] diff -Nru libreoffice-7.3.6/Makefile.in libreoffice-7.3.7/Makefile.in --- libreoffice-7.3.6/Makefile.in 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/Makefile.in 2022-10-27 10:11:14.000000000 +0000 @@ -201,7 +201,7 @@ # # Distclean # -distclean : clean compilerplugins-clean +distclean : clean compilerplugins-clean mac-app-store-package.clean rm -fr \ $(BUILDDIR)/Makefile \ $(BUILDDIR)/aclocal.m4 \ @@ -398,16 +398,56 @@ endif @$(call gb_Top_InstallFinished,Test Installation,$(TESTINSTALLDIR)) -mac-app-store-package: test-install +# target to bypass the packaging steps/to only assemble the package +mac-app-store-package.prepare: $(BUILDDIR)/$(PLATFORMID)/done + +# shorthand target to build a complete package for the currently building architecture +mac-app-store-package: mac-app-store-package.$(PLATFORMID) + +# recipe/targets to do the actual packaging +# the symbolication switch to productbuild unfortunately is undocumented, but that is what XCode +# uses when it creates a package with symbols for uploading to the appstore +mac-app-store-package.$(PLATFORMID) mac-app-store-package.universal: mac-app-store-package.%: $(BUILDDIR)/%/done ifneq ($(MACOSX_PACKAGE_SIGNING_IDENTITY),) - rm -rf "$(PRODUCTNAME).app" - mv "$(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app" "$(PRODUCTNAME).app" - productbuild --component "$(PRODUCTNAME).app" /Applications --sign $(MACOSX_PACKAGE_SIGNING_IDENTITY) $(PRODUCTNAME_WITHOUT_SPACES).pkg + $(SRCDIR)/solenv/bin/macosx-codesign-app-bundle $*/"$(PRODUCTNAME)".app + productbuild $(if $(ENABLE_SYMBOLS_FOR),--symbolication $*/Symbols) --component $*/"$(PRODUCTNAME)".app /Applications --sign $(MACOSX_PACKAGE_SIGNING_IDENTITY) $(PRODUCTNAME_WITHOUT_SPACES).pkg else @echo You did not provide an installer signing identity with --enable-macosx-package-signing @exit 1 endif +# the builds need to persist a standard "make clean" to be able to combine them into an universal +# binary, so provide an additional target that can be used standalone or via make distclean +mac-app-store-package.clean: + rm -rf \ + $(BUILDDIR)/macosx_x86_64 \ + $(BUILDDIR)/macosx_aarch64 \ + $(BUILDDIR)/universal \ + $(BUILDDIR)/$(PRODUCTNAME_WITHOUT_SPACES).pkg + +# used by the mac-app-store targets +$(BUILDDIR)/$(PLATFORMID)/done: test-install + rm -rf $(PLATFORMID) + mkdir -p $(PLATFORMID)/Symbols + mv $(TESTINSTALLDIR)/$(PRODUCTNAME_WITHOUT_SPACES).app $(PLATFORMID)/"$(PRODUCTNAME)".app +ifneq ($(ENABLE_SYMBOLS_FOR),) + symbols -arch all -symbolsPackageDir $(PLATFORMID)/Symbols $(PLATFORMID)/"$(PRODUCTNAME)".app/Contents/Frameworks/[^L]* $(PLATFORMID)/"$(PRODUCTNAME)".app/Contents/MacOS/* + strip -S $(PLATFORMID)/"$(PRODUCTNAME)".app/Contents/Frameworks/[^L]* $(PLATFORMID)/"$(PRODUCTNAME)".app/Contents/MacOS/* +endif + touch $@ + +# build one arch using the mac-app-store-package.prepare target, make clean and change the autogen.input +# to build for the other target, then use mac-app-store-package.universal to build for the other arch and +# combine the two into a universal binary +$(BUILDDIR)/universal/done: $(BUILDDIR)/macosx_x86_64/done $(BUILDDIR)/macosx_aarch64/done + rm -rf universal + mkdir -p universal/Symbols +ifneq ($(ENABLE_SYMBOLS_FOR),) + cp -a macosx_x86_64/Symbols/* macosx_aarch64/Symbols/* universal/Symbols/ +endif + $(SRCDIR)/bin/merge-app-bundles macosx_x86_64/"$(PRODUCTNAME)".app macosx_aarch64/"$(PRODUCTNAME)".app universal/"$(PRODUCTNAME)".app + touch $@ + distro-pack-install: install $(SRCDIR)/bin/distro-install-clean-up $(SRCDIR)/bin/distro-install-desktop-integration diff -Nru libreoffice-7.3.6/oox/source/vml/vmlinputstream.cxx libreoffice-7.3.7/oox/source/vml/vmlinputstream.cxx --- libreoffice-7.3.6/oox/source/vml/vmlinputstream.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/oox/source/vml/vmlinputstream.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -42,7 +42,7 @@ bool lclIsWhiteSpace( char cChar ) { - return cChar <= 32; + return cChar >= 0 && cChar <= 32; } const char* lclFindWhiteSpace( const char* pcBeg, const char* pcEnd ) diff -Nru libreoffice-7.3.6/readlicense_oo/license/CREDITS.fodt libreoffice-7.3.7/readlicense_oo/license/CREDITS.fodt --- libreoffice-7.3.6/readlicense_oo/license/CREDITS.fodt 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/readlicense_oo/license/CREDITS.fodt 2022-10-27 10:11:14.000000000 +0000 @@ -1,24 +1,24 @@ - Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/7.4.0.3$Linux_X86_64 LibreOffice_project/f85e47c08ddd19c015c0114a68350214f7066f5a2012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA + Credits » LibreOfficeCreditscontributorscodersdevelopersCredits for the LibreOffice development/coding.LibreOffice/7.4.2.3$Linux_X86_64 LibreOffice_project/382eef1f22670f7f4118c8c2dd222ec7ad009daf2012-02-20T22:17:18.060000000PT14M12S3JUebjoxEpqXoQcpltWRTwzBZEEHtch3wApdhgiQPFiA - 660 + 2062 501 - 32175 - 28180 + 32307 + 28206 true true view2 - 14233 - 5835 + 3649 + 3434 501 - 660 - 32674 - 28838 + 2062 + 32807 + 30267 0 0 false @@ -100,7 +100,7 @@ true - 11200710 + 11485043 true false @@ -122,6 +122,7 @@ true false false + false false false @@ -170,7 +171,7 @@ - + @@ -348,24 +349,21 @@ - + - + - - - - + - + @@ -426,46 +424,46 @@ - + - + - + - + - + - + - + + + + + + + - + - + - - - - - - @@ -493,45 +491,102 @@ - + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + + + + + + + + + - + + + + - + - - + + - - + + - - + + - - + + - - + + @@ -546,6 +601,7 @@ + @@ -555,6 +611,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -586,7 +674,7 @@ - + @@ -618,7 +706,7 @@ - + @@ -650,7 +738,7 @@ - + @@ -682,7 +770,7 @@ - + @@ -714,7 +802,7 @@ - + @@ -746,7 +834,7 @@ - + @@ -1084,21 +1172,20 @@ - Credits - 1784 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2022-08-31 13:01:51. + Credits + 1801 individuals contributed to OpenOffice.org (and whose contributions were imported into LibreOffice) or LibreOffice until 2022-10-27 08:48:25. * marks developers whose first contributions happened after 2010-09-28. Developers committing code since 2010-09-28 - - + Ruediger TimmCommits: 82464Joined: 2000-10-10 - Caolán McNamaraCommits: 33445Joined: 2000-10-10 + Caolán McNamaraCommits: 33682Joined: 2000-10-10 Kurt ZenkerCommits: 31752Joined: 2000-09-25 @@ -1115,10 +1202,10 @@ Vladimir GlazunovCommits: 25434Joined: 2000-12-04 - Stephan BergmannCommits: 19983Joined: 2000-10-04 + Stephan BergmannCommits: 20067Joined: 2000-10-04 - *Noel GrandinCommits: 16594Joined: 2011-12-12 + *Noel GrandinCommits: 16887Joined: 2011-12-12 @@ -1126,13 +1213,13 @@ Ivo HinkelmannCommits: 9480Joined: 2002-09-09 - Miklos VajnaCommits: 9084Joined: 2010-07-29 + Miklos VajnaCommits: 9185Joined: 2010-07-29 - Tor LillqvistCommits: 9080Joined: 2010-03-23 + Tor LillqvistCommits: 9091Joined: 2010-03-23 - Michael StahlCommits: 8034Joined: 2008-06-16 + Michael StahlCommits: 8054Joined: 2008-06-16 @@ -1140,10 +1227,10 @@ Kohei YoshidaCommits: 5571Joined: 2009-06-19 - *Markus MohrhardCommits: 5203Joined: 2011-03-17 + Eike RathkeCommits: 5206Joined: 2000-10-11 - Eike RathkeCommits: 5146Joined: 2000-10-11 + *Markus MohrhardCommits: 5203Joined: 2011-03-17 Frank Schoenheit [fs]Commits: 5008Joined: 2000-09-19 @@ -1154,18 +1241,18 @@ David TardonCommits: 3648Joined: 2009-11-12 - *Julien NabetCommits: 3501Joined: 2010-11-04 + *Julien NabetCommits: 3540Joined: 2010-11-04 - *Andrea GelminiCommits: 3207Joined: 2014-10-30 + *Andrea GelminiCommits: 3265Joined: 2014-10-30 - Luboš LuňákCommits: 3135Joined: 2010-09-21 + Luboš LuňákCommits: 3201Joined: 2010-09-21 - *Tomaž VajngerlCommits: 3090Joined: 2012-06-02 + *Tomaž VajngerlCommits: 3108Joined: 2012-06-02 Hans-Joachim LankenauCommits: 3007Joined: 2000-09-19 @@ -1185,15 +1272,15 @@ Oliver SpechtCommits: 2549Joined: 2000-09-21 - Michael MeeksCommits: 2477Joined: 2004-08-05 + Michael MeeksCommits: 2479Joined: 2004-08-05 - Bjoern MichaelsenCommits: 2454Joined: 2009-10-14 + Bjoern MichaelsenCommits: 2462Joined: 2009-10-14 - *Mike KaganskiCommits: 2377Joined: 2015-04-26 + *Mike KaganskiCommits: 2452Joined: 2015-04-26 *Norbert ThiebaudCommits: 2176Joined: 2010-09-29 @@ -1202,15 +1289,15 @@ *Thomas ArnholdCommits: 2176Joined: 2011-01-16 - Philipp Lohmann [pl]Commits: 2089Joined: 2000-09-21 + *Xisco FauliCommits: 2130Joined: 2011-02-06 - *Xisco FauliCommits: 2026Joined: 2011-02-06 + Philipp Lohmann [pl]Commits: 2089Joined: 2000-09-21 - *Andras TimarCommits: 1969Joined: 2010-10-02 + *Andras TimarCommits: 1970Joined: 2010-10-02 Christian LippkaCommits: 1805Joined: 2000-09-25 @@ -1221,7 +1308,7 @@ - *Olivier HallotCommits: 1617Joined: 2010-10-25 + *Olivier HallotCommits: 1660Joined: 2010-10-25 Armin Le Grand (Allotropia)Commits: 1542Joined: 2000-09-25 @@ -1235,10 +1322,10 @@ - Thorsten BehrensCommits: 1441Joined: 2001-04-25 + *Chris SherlockCommits: 1444Joined: 2013-02-25 - *Chris SherlockCommits: 1432Joined: 2013-02-25 + Thorsten BehrensCommits: 1441Joined: 2001-04-25 Fridrich ŠtrbaCommits: 1338Joined: 2007-02-22 @@ -1255,7 +1342,7 @@ *Jan-Marek GlogowskiCommits: 1232Joined: 2013-11-14 - *andreas kainzCommits: 1226Joined: 2015-03-18 + *andreas kainzCommits: 1227Joined: 2015-03-18 *Tamás ZolnaiCommits: 1208Joined: 2012-08-06 @@ -1266,13 +1353,13 @@ Daniel Rentz [dr]Commits: 1206Joined: 2000-09-28 - *Samuel MehrbrodtCommits: 1113Joined: 2011-06-08 + *Samuel MehrbrodtCommits: 1124Joined: 2011-06-08 - *Gabor KelemenCommits: 1088Joined: 2013-06-18 + *Gabor KelemenCommits: 1093Joined: 2013-06-18 - *Szymon KłosCommits: 1057Joined: 2014-03-22 + *Szymon KłosCommits: 1063Joined: 2014-03-22 @@ -1280,7 +1367,7 @@ *Lionel Elie MamaneCommits: 1051Joined: 2011-01-15 - Christian LohmaierCommits: 1020Joined: 2008-06-01 + Christian LohmaierCommits: 1034Joined: 2008-06-01 *Johnny_MCommits: 966Joined: 2016-05-12 @@ -1319,13 +1406,13 @@ - *Maxim MonastirskyCommits: 797Joined: 2013-10-27 + *Maxim MonastirskyCommits: 802Joined: 2013-10-27 Mikhail VoytenkoCommits: 793Joined: 2001-01-16 - *László NémethCommits: 757Joined: 2010-09-29 + *László NémethCommits: 771Joined: 2010-09-29 Carsten DriesnerCommits: 748Joined: 2000-10-06 @@ -1356,15 +1443,15 @@ Joerg Skottke [jsk]Commits: 678Joined: 2008-06-17 - *Joseph PowersCommits: 658Joined: 2010-10-15 + *Michael WeghornCommits: 675Joined: 2014-09-10 - *Jens CarlCommits: 657Joined: 2014-05-28 + *Joseph PowersCommits: 658Joined: 2010-10-15 - *Michael WeghornCommits: 653Joined: 2014-09-10 + *Jens CarlCommits: 657Joined: 2014-05-28 Kai SommerfeldCommits: 651Joined: 2000-10-10 @@ -1378,21 +1465,21 @@ *Justin LuthCommits: 624Joined: 2014-09-30 - *Rafael DominguezCommits: 606Joined: 2011-02-13 + *Rizal MuttaqinCommits: 617Joined: 2018-05-21 - *Jochen NitschkeCommits: 587Joined: 2016-02-02 + *Rafael DominguezCommits: 606Joined: 2011-02-13 - *Rizal MuttaqinCommits: 574Joined: 2018-05-21 + *Jochen NitschkeCommits: 587Joined: 2016-02-02 - *Yousuf PhilipsCommits: 569Joined: 2014-09-21 + Rene EngelhardCommits: 572Joined: 2005-03-14 - Rene EngelhardCommits: 567Joined: 2005-03-14 + *Yousuf PhilipsCommits: 569Joined: 2014-09-21 Thomas Benisch [tbe]Commits: 551Joined: 2000-10-23 @@ -1403,7 +1490,7 @@ - *Adolfo Jayme BarrientosCommits: 534Joined: 2013-06-21 + *Adolfo Jayme BarrientosCommits: 540Joined: 2013-06-21 Jürgen SchmidtCommits: 512Joined: 2000-10-09 @@ -1420,13 +1507,13 @@ Andreas BregasCommits: 470Joined: 2000-09-25 - *Seth ChaiklinCommits: 461Joined: 2019-11-13 + *Jim RaykowskiCommits: 462Joined: 2017-04-16 - *Jim RaykowskiCommits: 445Joined: 2017-04-16 + *Seth ChaiklinCommits: 461Joined: 2019-11-13 - *Heiko TietzeCommits: 394Joined: 2016-10-06 + *Heiko TietzeCommits: 397Joined: 2016-10-06 @@ -1434,13 +1521,13 @@ Dirk VoelzkeCommits: 392Joined: 2000-11-27 - *Ashod NakashianCommits: 388Joined: 2015-01-07 + *Ashod NakashianCommits: 391Joined: 2015-01-07 - *Ivan TimofeevCommits: 380Joined: 2011-09-16 + *Laurent BPCommits: 389Joined: 2011-08-31 - *Laurent BPCommits: 375Joined: 2011-08-31 + *Ivan TimofeevCommits: 380Joined: 2011-09-16 @@ -1468,7 +1555,7 @@ *David OstrovskyCommits: 334Joined: 2012-04-01 - *Jean-Pierre LedureCommits: 322Joined: 2013-10-12 + *Jean-Pierre LedureCommits: 326Joined: 2013-10-12 @@ -1476,27 +1563,27 @@ *Marco CecchettiCommits: 321Joined: 2011-04-14 - *Arnaud VERSINICommits: 307Joined: 2010-10-05 + *Justin LuthCommits: 317Joined: 2018-04-21 - Radek DoulikCommits: 305Joined: 2010-05-03 + *Arnaud VersiniCommits: 313Joined: 2010-10-05 - *Chr. RossmanithCommits: 300Joined: 2011-01-03 + Radek DoulikCommits: 305Joined: 2010-05-03 - *Mark HungCommits: 298Joined: 2014-11-04 + *Chr. RossmanithCommits: 300Joined: 2011-01-03 - *Justin LuthCommits: 291Joined: 2018-04-21 + *Mark HungCommits: 298Joined: 2014-11-04 *August SodoraCommits: 285Joined: 2011-10-18 - *Henry CastroCommits: 281Joined: 2015-01-09 + *Henry CastroCommits: 283Joined: 2015-01-09 @@ -1515,7 +1602,7 @@ - *Vasily MelenchukCommits: 253Joined: 2015-01-27 + *Vasily MelenchukCommits: 256Joined: 2015-01-27 Bartosz KosiorekCommits: 251Joined: 2010-09-17 @@ -1529,52 +1616,52 @@ - *Winfried DonkersCommits: 213Joined: 2011-11-11 + *Rafael LimaCommits: 222Joined: 2020-11-13 - *Tamas BunthCommits: 203Joined: 2016-03-08 + *Winfried DonkersCommits: 213Joined: 2011-11-11 - Ingo SchmidtCommits: 202Joined: 2004-02-05 + *Regina HenschelCommits: 206Joined: 2010-11-04 - *Rafael LimaCommits: 202Joined: 2020-11-13 + *Tamas BunthCommits: 203Joined: 2016-03-08 - *Arkadiy IllarionovCommits: 201Joined: 2017-01-15 + Ingo SchmidtCommits: 202Joined: 2004-02-05 - *Regina HenschelCommits: 198Joined: 2010-11-04 + *Arkadiy IllarionovCommits: 201Joined: 2017-01-15 *Jacobo Aragunde PérezCommits: 192Joined: 2013-09-25 - *Robert NagyCommits: 191Joined: 2010-11-04 + *Dennis FrancisCommits: 192Joined: 2018-11-15 - *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 - *François TigeotCommits: 176Joined: 2011-01-31 + *Andreas HeinischCommits: 182Joined: 2019-05-13 - *Philipp RiemerCommits: 171Joined: 2012-05-25 + *François TigeotCommits: 176Joined: 2011-01-31 - *Andreas HeinischCommits: 171Joined: 2019-05-13 + *Philipp RiemerCommits: 171Joined: 2012-05-25 *Balazs VargaCommits: 165Joined: 2018-07-05 @@ -1588,21 +1675,21 @@ *Gülşah KöseCommits: 157Joined: 2015-03-14 - *Gert FallerCommits: 151Joined: 2010-10-25 + *Tünde TóthCommits: 152Joined: 2019-03-14 - *Artur DordaCommits: 151Joined: 2012-04-15 + *Gert FallerCommits: 151Joined: 2010-10-25 - *Alexander WilmsCommits: 151Joined: 2012-05-26 + *Artur DordaCommits: 151Joined: 2012-04-15 - *Tünde TóthCommits: 151Joined: 2019-03-14 + *Alexander WilmsCommits: 151Joined: 2012-05-26 - *Ilmari LauhakangasCommits: 143Joined: 2017-04-15 + *Ilmari LauhakangasCommits: 144Joined: 2017-04-15 Gregor HartmannCommits: 141Joined: 2000-10-12 @@ -1622,15 +1709,15 @@ *Serge KrotCommits: 132Joined: 2015-10-25 - *panoskorovesisCommits: 131Joined: 2021-06-09 + *Dante DMCommits: 132Joined: 2020-06-22 - *Jesús CorriusCommits: 130Joined: 2010-10-07 + *panoskorovesisCommits: 131Joined: 2021-06-09 - *Dante DMCommits: 130Joined: 2020-06-22 + *Jesús CorriusCommits: 130Joined: 2010-10-07 *Philipp WeissenbacherCommits: 129Joined: 2011-10-28 @@ -1647,7 +1734,7 @@ *haochenCommits: 126Joined: 2013-10-10 - *Mert TumerCommits: 123Joined: 2016-04-30 + *Mert TumerCommits: 124Joined: 2016-04-30 Takashi OnoCommits: 122Joined: 2009-12-10 @@ -1669,6 +1756,9 @@ + *Khaled HosnyCommits: 116Joined: 2022-06-06 + + *Joren De CuyperCommits: 114Joined: 2013-01-07 @@ -1677,11 +1767,11 @@ *Dennis FrancisCommits: 112Joined: 2015-04-15 + + *Akshay DeepCommits: 110Joined: 2016-01-23 - - *Sophia SchröderCommits: 110Joined: 2018-04-07 @@ -1689,27 +1779,27 @@ *Louis-Francis Ratté-BoulianneCommits: 102Joined: 2014-10-29 - *Rishabh KumarCommits: 100Joined: 2015-02-13 - - - *Thomas KlausnerCommits: 99Joined: 2010-10-01 + *HosseinCommits: 102Joined: 2021-06-29 - *HosseinCommits: 99Joined: 2021-06-29 + *Rishabh KumarCommits: 100Joined: 2015-02-13 + + + *Thomas KlausnerCommits: 99Joined: 2010-10-01 - *Aron BudeaCommits: 97Joined: 2014-12-22 + *Aron BudeaCommits: 99Joined: 2014-12-22 *Attila Bakos (NISZ)Commits: 96Joined: 2019-10-28 + + *Laurent GodardCommits: 93Joined: 2011-05-06 - - *Stefan KnorrCommits: 91Joined: 2011-07-04 @@ -1719,11 +1809,11 @@ *Krisztian PinterCommits: 90Joined: 2013-02-18 + + *Philipp HoferCommits: 90Joined: 2020-11-06 - - *Albert ThuswaldnerCommits: 89Joined: 2011-01-26 @@ -1733,11 +1823,11 @@ *Daniel BankstonCommits: 88Joined: 2012-04-03 + + *Korrawit PruegsanusakCommits: 87Joined: 2011-05-28 - - *Adam CoCommits: 86Joined: 2013-04-28 @@ -1747,11 +1837,11 @@ Mihaela KedikovaCommits: 85Joined: 2009-10-30 + + *Javier FernandezCommits: 84Joined: 2013-03-06 - - Tobias KrauseCommits: 83Joined: 2007-10-02 @@ -1761,70 +1851,78 @@ *Roman KuznetsovCommits: 83Joined: 2018-10-23 + + *Ricardo MontaniaCommits: 82Joined: 2012-08-18 - - - *Tibor NagyCommits: 81Joined: 2020-04-01 + *Tibor NagyCommits: 82Joined: 2020-04-01 + + + *offtkpCommits: 79Joined: 2021-03-07 *Steve FanningCommits: 78Joined: 2020-04-20 + + *Tobias MadlCommits: 74Joined: 2014-09-15 *Gergo MocsiCommits: 72Joined: 2013-02-14 - - *weigaoCommits: 72Joined: 2014-05-07 Thorsten BosbachCommits: 70Joined: 2008-06-18 + + *Michaël LefèvreCommits: 68Joined: 2011-02-22 *Riccardo MagliocchettiCommits: 68Joined: 2012-01-25 - - *Antonio FernandezCommits: 68Joined: 2012-07-18 - *offtkpCommits: 68Joined: 2021-03-07 + *Kevin HunterCommits: 67Joined: 2010-10-22 + + - *Kevin HunterCommits: 67Joined: 2010-10-22 + *Alain RomedenneCommits: 67Joined: 2021-02-17 *Jelle van der WaaCommits: 66Joined: 2013-06-16 - - - *Rohan KumarCommits: 65Joined: 2016-02-23 + *Tomoyuki KubotaCommits: 66Joined: 2018-03-11 - *Tomoyuki KubotaCommits: 65Joined: 2018-03-11 + *Rohan KumarCommits: 65Joined: 2016-02-23 + + *tageziCommits: 63Joined: 2015-09-16 *Mohammed Abdul AzeemCommits: 63Joined: 2016-02-08 - - + + *Justin LuthCommits: 63Joined: 2020-02-03 + *Rosemary SebastianCommits: 62Joined: 2015-06-23 + + *Pranam LashkariCommits: 62Joined: 2020-04-03 @@ -1834,330 +1932,322 @@ *Martin HoskenCommits: 61Joined: 2011-02-25 - - *Pierre-Eric Pelloux-PrayerCommits: 61Joined: 2012-06-20 - - *Alain RomedenneCommits: 61Joined: 2021-02-17 - + + Oliver Craemer [oc]Commits: 60Joined: 2009-10-23 *Jaskaran SinghCommits: 60Joined: 2016-02-18 - - 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 - - *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 Nikolai PretzellCommits: 54Joined: 2001-03-09 + + *Mihály PalenikCommits: 54Joined: 2013-07-11 *yangzhangCommits: 54Joined: 2013-11-04 - - *Jim RaykowskiCommits: 54Joined: 2019-05-11 *Rob SneldersCommits: 53Joined: 2011-02-08 + + *Martin KepplingerCommits: 53Joined: 2011-02-18 *Lior KaplanCommits: 52Joined: 2010-10-05 - - *Efe Gürkan YALAMANCommits: 52Joined: 2012-08-01 *Will ThompsonCommits: 51Joined: 2012-03-21 + + *Faisal M. Al-OtaibiCommits: 51Joined: 2012-06-25 *Cao Cuong NgoCommits: 51Joined: 2013-03-04 - - *Rachit GuptaCommits: 51Joined: 2014-01-18 *Ptyl DragonCommits: 50Joined: 2013-05-09 + + *Samuel ThibaultCommits: 49Joined: 2018-02-15 *Marcel MetzCommits: 48Joined: 2011-12-05 - - *Urs FässlerCommits: 48Joined: 2013-02-14 *mingli juCommits: 48Joined: 2013-11-05 + + *Emmanuel Gil PeyrotCommits: 48Joined: 2015-11-19 *J. Graeme LingardCommits: 47Joined: 2010-09-29 - - - - *Justin LuthCommits: 47Joined: 2020-02-03 - *Luke DellerCommits: 46Joined: 2012-11-26 *hongyu zhongCommits: 46Joined: 2013-11-04 + + *Alexandre VicenziCommits: 46Joined: 2014-01-15 - - *Mihai VargaCommits: 46Joined: 2014-02-27 + *Kevin SuoCommits: 46Joined: 2020-10-10 + + mb93783Commits: 45Joined: 2009-07-15 + + *Eilidh McAdamCommits: 45Joined: 2011-03-10 *Christophe JAILLETCommits: 45Joined: 2012-06-14 - - *Susobhan GhoshCommits: 45Joined: 2016-01-03 *Szabolcs TothCommits: 45Joined: 2019-08-07 + + Volker Ahrendt [va]Commits: 44Joined: 2002-04-15 *Daniel RobertsonCommits: 44Joined: 2015-06-27 - - *Luc CastermansCommits: 43Joined: 2011-11-13 *Philippe JungCommits: 43Joined: 2015-05-01 + + *Daniel Arato (NISZ)Commits: 43Joined: 2020-08-24 *Peter JentschCommits: 42Joined: 2011-01-07 - - *Mark WielaardCommits: 42Joined: 2013-05-13 *Sébastien Le RayCommits: 41Joined: 2011-02-10 + + *Christian M. HellerCommits: 41Joined: 2013-02-24 *Tsutomu UchinoCommits: 41Joined: 2014-01-08 - - *Marco A.G.PintoCommits: 41Joined: 2018-07-16 *AdityaCommits: 41Joined: 2019-01-04 + + *Francisco SaitoCommits: 40Joined: 2011-03-21 *Grzegorz AraminowiczCommits: 40Joined: 2019-03-08 - - - *Kevin SuoCommits: 40Joined: 2020-10-10 + *Sarper AkdemirCommits: 40Joined: 2021-04-25 *Kayo HamidCommits: 39Joined: 2010-10-09 + + *Marc-André LaverdièreCommits: 39Joined: 2011-06-21 *minwangCommits: 39Joined: 2013-11-04 - - *Valentin KettnerCommits: 38Joined: 2014-03-17 *Damjan JovanovicCommits: 38Joined: 2015-08-26 + + *Shivam Kumar SinghCommits: 38Joined: 2020-01-15 *Iain BillettCommits: 37Joined: 2012-04-11 - - *abdulmajeed ahmedCommits: 37Joined: 2012-07-07 *Jennifer LiebelCommits: 37Joined: 2014-08-29 + + *Ayhan YalçınsoyCommits: 37Joined: 2019-12-20 *Guillaume PousselCommits: 36Joined: 2010-12-22 - - *Radu IoanCommits: 36Joined: 2012-08-17 *Vinaya MandkeCommits: 36Joined: 2013-02-08 + + *Csikós TamásCommits: 36Joined: 2013-07-01 *Priyanka GaikwadCommits: 36Joined: 2013-11-12 - - *Kohei YoshidaCommits: 36Joined: 2019-08-12 *Laurent CharrièreCommits: 35Joined: 2010-10-14 + + *Santiago MartinezCommits: 35Joined: 2012-01-20 *xukai liuCommits: 35Joined: 2013-11-01 - - *dechuangCommits: 35Joined: 2013-11-04 *Tobias LippertCommits: 35Joined: 2014-01-02 + + *Łukasz HryniukCommits: 35Joined: 2015-01-02 *Mark PageCommits: 35Joined: 2016-04-29 - - *Yusuf KetenCommits: 35Joined: 2019-12-18 - *Sarper AkdemirCommits: 35Joined: 2021-04-25 + *Andreas MantkeCommits: 34Joined: 2010-09-29 + + *Laurent AlonsoCommits: 34Joined: 2011-10-23 *Rodolfo Ribeiro GomesCommits: 34Joined: 2012-12-19 - - *Steve YinCommits: 34Joined: 2013-11-14 - *Andreas MantkeCommits: 33Joined: 2010-09-29 + *Ilhan YesilCommits: 34Joined: 2018-04-11 + + *Aurimas FišerasCommits: 33Joined: 2010-10-11 *Cor NouwsCommits: 33Joined: 2011-11-19 - - *Yogesh BharateCommits: 33Joined: 2013-10-11 *Dennis RoczekCommits: 33Joined: 2015-06-09 - - *Ilhan YesilCommits: 33Joined: 2018-04-11 - + + *Aleksei NikiforovCommits: 33Joined: 2018-10-31 - - *GokulCommits: 32Joined: 2012-07-10 @@ -2167,11 +2257,11 @@ *Arnold DumasCommits: 32Joined: 2016-02-14 + + *Dmitriy ShilinCommits: 32Joined: 2018-11-30 - - *Shubham GoyalCommits: 32Joined: 2019-02-26 @@ -2181,11 +2271,11 @@ *Sushil ShindeCommits: 31Joined: 2013-10-21 + + *fengzengCommits: 31Joined: 2013-11-04 - - *Gautam PrajapatiCommits: 31Joined: 2017-02-06 @@ -2195,9 +2285,6 @@ *DaeHyun SungCommits: 31Joined: 2018-05-19 - - *Khaled HosnyCommits: 31Joined: 2022-06-06 - @@ -2243,6 +2330,9 @@ + *Thorsten BehrensCommits: 30Joined: 2020-12-19 + + *Harri PitkänenCommits: 29Joined: 2010-10-04 @@ -2251,13 +2341,10 @@ *xinjiangCommits: 29Joined: 2013-11-04 - - *Matthias SeidelCommits: 29Joined: 2017-02-18 - - *Thorsten BehrensCommits: 29Joined: 2020-12-19 + *Matthias SeidelCommits: 29Joined: 2017-02-18 Andre Fischer<andre.f.fischerCommits: 28Joined: 2010-07-21 @@ -2316,16 +2403,19 @@ *Adrien OllierCommits: 27Joined: 2019-04-24 + *Martin SrebotnjakCommits: 26Joined: 2010-12-19 + + *Nicolas ChristenerCommits: 26Joined: 2011-03-10 *Josh HeidenreichCommits: 26Joined: 2011-07-20 + + *Maxime de RoucyCommits: 26Joined: 2012-03-08 - - *Daniel SikelerCommits: 26Joined: 2014-08-28 @@ -2333,9 +2423,6 @@ *Akash JainCommits: 26Joined: 2016-03-25 - *Martin SrebotnjakCommits: 25Joined: 2010-12-19 - - *Kurosawa TakeshiCommits: 25Joined: 2011-01-04 @@ -2532,11 +2619,14 @@ *Ming HuaCommits: 18Joined: 2020-11-02 - *Alfonso EusebioCommits: 17Joined: 2011-01-16 + *Armin Le Grand (allotropia)Commits: 18Joined: 2022-06-27 + *Alfonso EusebioCommits: 17Joined: 2011-01-16 + + *Bálint DózsaCommits: 17Joined: 2011-02-10 @@ -2545,11 +2635,11 @@ *Jian Hong ChengCommits: 17Joined: 2012-06-26 + + *navin patidarCommits: 17Joined: 2013-01-06 - - *Umesh KadamCommits: 17Joined: 2014-01-10 @@ -2559,11 +2649,11 @@ *Francisco Adrián SánchezCommits: 17Joined: 2016-10-07 + + *Thomas BeckCommits: 17Joined: 2017-03-27 - - *Kshitij PathaniaCommits: 17Joined: 2017-09-28 @@ -2573,11 +2663,11 @@ *Martin van ZijlCommits: 17Joined: 2018-02-26 + + *Alain RomedenneCommits: 17Joined: 2018-12-19 - - *Todor BalabanovCommits: 17Joined: 2019-04-29 @@ -2587,54 +2677,54 @@ *Bayram ÇiçekCommits: 17Joined: 2020-11-23 + + + + *Mark HungCommits: 17Joined: 2022-05-01 + 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 - *Mark HungCommits: 16Joined: 2022-05-01 - - - - Octavio AlvarezCommits: 15Joined: 2010-09-13 @@ -2643,11 +2733,11 @@ *Povilas KanapickasCommits: 15Joined: 2010-10-18 + + *Joachim TremourouxCommits: 15Joined: 2010-11-19 - - *Yifan JCommits: 15Joined: 2010-12-16 @@ -2657,11 +2747,11 @@ *Alexander BergmannCommits: 15Joined: 2012-01-13 + + *Catalin IacobCommits: 15Joined: 2012-02-10 - - *Nikhil WalvekarCommits: 15Joined: 2013-11-01 @@ -2671,11 +2761,11 @@ *Andreas BrandnerCommits: 15Joined: 2017-09-04 + + *Armin Le GrandCommits: 15Joined: 2018-02-15 - - *Samuel ThibaultCommits: 15Joined: 2018-09-05 @@ -2683,227 +2773,235 @@ *Ross JohnsonCommits: 15Joined: 2021-09-13 + *Taichi HaradaguchiCommits: 15Joined: 2022-09-06 + + + + *LeMoyne CastleCommits: 14Joined: 2010-10-25 *Tim HardeckCommits: 14Joined: 2011-11-03 - - *Björgvin RagnarssonCommits: 14Joined: 2012-02-13 *Zhe WangCommits: 14Joined: 2012-06-20 + + *Sun YingCommits: 14Joined: 2012-08-16 *Alex HenrieCommits: 14Joined: 2014-03-05 - - *Juan PiccaCommits: 14Joined: 2014-07-23 *Zsolt BölönyCommits: 14Joined: 2015-01-10 + + *Gökhan GurbetoğluCommits: 14Joined: 2016-06-06 *Nickson ThandaCommits: 14Joined: 2018-03-25 - - *Prashant ShahCommits: 13Joined: 2010-10-10 *Jean-Baptiste FaureCommits: 13Joined: 2011-02-20 + + *Muhammad HaggagCommits: 13Joined: 2012-02-01 *gerhard oettlCommits: 13Joined: 2012-08-27 - - *Alia AlmusaireaeCommits: 13Joined: 2012-11-05 *Mathias HasselmannCommits: 13Joined: 2013-01-14 + + *Manfred BlumeCommits: 13Joined: 2017-03-27 *sabri unalCommits: 13Joined: 2018-11-20 - - *Heiko TietzeCommits: 13Joined: 2019-09-08 *Steve FanningCommits: 13Joined: 2019-11-30 + + *VaibhavMalik4187Commits: 13Joined: 2021-12-10 *Alain RomedenneCommits: 13Joined: 2022-01-06 - - *Jani MonosesCommits: 12Joined: 2010-10-30 *Wilhelm PfluegerCommits: 12Joined: 2011-02-05 + + *Tomas HlavatyCommits: 12Joined: 2011-12-06 *Mariusz DykierekCommits: 12Joined: 2012-01-16 - - *Greg Kroah-HartmanCommits: 12Joined: 2012-02-06 *Gábor StefanikCommits: 12Joined: 2012-04-07 + + *Mirek MazelCommits: 12Joined: 2012-06-05 *Wei WeiCommits: 12Joined: 2013-11-16 - - *kadertarlanCommits: 12Joined: 2015-12-14 *tymyjanCommits: 12Joined: 2016-04-03 + + *Abhilash SinghCommits: 12Joined: 2016-07-22 *Kacper KasperCommits: 12Joined: 2018-02-18 - - *Pelin KuranCommits: 12Joined: 2020-01-25 *Gleb PopovCommits: 12Joined: 2020-10-05 + + *Emircan AgacCommits: 12Joined: 2021-08-02 Mox SoiniCommits: 11Joined: 2008-04-04 - - Frank PetersCommits: 11Joined: 2010-05-20 *Jonas Finnemann JensenCommits: 11Joined: 2010-10-01 + + *René KjellerupCommits: 11Joined: 2010-10-14 *Peter RabiCommits: 11Joined: 2011-07-14 - - *David BolenCommits: 11Joined: 2012-03-07 *Jung-uk KimCommits: 11Joined: 2012-08-13 + + *Enrico Weigelt, metux ITSCommits: 11Joined: 2012-11-14 *Abdulaziz A AlayedCommits: 11Joined: 2013-01-22 - - *Sean YoungCommits: 11Joined: 2013-05-16 *Krunoslav ŠebetićCommits: 11Joined: 2013-07-18 + + *Charu TyagiCommits: 11Joined: 2014-06-25 *Michael JaumannCommits: 11Joined: 2014-09-02 - - *Phillip SzCommits: 11Joined: 2015-03-16 *nadithCommits: 11Joined: 2016-07-14 + + *Maarten BosmansCommits: 11Joined: 2016-08-24 *Fakabbir AminCommits: 11Joined: 2017-01-29 - - *Colomban WendlingCommits: 11Joined: 2017-03-15 *jmzambonCommits: 11Joined: 2017-05-19 + + *Manuj VashistCommits: 11Joined: 2017-12-10 *Milian WolffCommits: 11Joined: 2018-01-10 - - *Abhyudaya SharmaCommits: 11Joined: 2018-03-19 *Srijan BhatiaCommits: 11Joined: 2020-05-30 + + *shubham656Commits: 11Joined: 2020-11-07 *AnshuCommits: 11Joined: 2020-11-09 - - *Jeff HuangCommits: 11Joined: 2021-04-12 + *Balazs VargaCommits: 11Joined: 2022-06-29 + + + + *Timo HeinoCommits: 10Joined: 2010-11-22 @@ -2912,11 +3010,11 @@ *Theo van KlaverenCommits: 10Joined: 2011-03-10 - - *Troy RolloCommits: 10Joined: 2011-07-11 + + *Kristian RietveldCommits: 10Joined: 2011-10-15 @@ -2926,11 +3024,11 @@ *Jianyuan LiCommits: 10Joined: 2012-08-16 - - *Stefan WeibergCommits: 10Joined: 2014-08-28 + + *Benjamin NiCommits: 10Joined: 2015-04-02 @@ -2940,11 +3038,11 @@ *Chirag ManwaniCommits: 10Joined: 2016-02-16 - - *Dilek UzulmezCommits: 10Joined: 2016-10-15 + + *Kiyotaka NishiboriCommits: 10Joined: 2017-08-27 @@ -2954,11 +3052,11 @@ *Mark RobbinsonCommits: 10Joined: 2019-01-02 - - *A_GANCommits: 10Joined: 2020-01-25 + + *Michael WarnerCommits: 10Joined: 2020-05-24 @@ -2968,11 +3066,11 @@ *tusharCommits: 10Joined: 2021-01-10 - - *Vincent LE GARRECCommits: 10Joined: 2021-02-21 + + *Balazs SanthaCommits: 10Joined: 2021-02-26 @@ -2982,11 +3080,11 @@ *Mattias JohnssonCommits: 9Joined: 2010-10-18 - - *Surendran MahendranCommits: 9Joined: 2010-11-05 + + *Steven ButlerCommits: 9Joined: 2011-01-07 @@ -2996,11 +3094,11 @@ *Mihkel TõnnovCommits: 9Joined: 2012-07-02 - - *Michael DunphyCommits: 9Joined: 2013-04-18 + + *Dinesh PatilCommits: 9Joined: 2014-03-12 @@ -3010,11 +3108,11 @@ *Deena FrancisCommits: 9Joined: 2014-07-29 - - *Ryan McCoskrieCommits: 9Joined: 2014-09-14 + + *Jun NogataCommits: 9Joined: 2015-01-07 @@ -3024,11 +3122,11 @@ *skswalesCommits: 9Joined: 2016-05-06 - - *pv2kCommits: 9Joined: 2016-11-28 + + *Adam KovacsCommits: 9Joined: 2018-08-16 @@ -3038,10 +3136,13 @@ *Canberk TURANCommits: 9Joined: 2020-01-25 + + *Jussi PakkanenCommits: 9Joined: 2020-02-22 + - *Jussi PakkanenCommits: 9Joined: 2020-02-22 + *Povilas KanapickasCommits: 9Joined: 2022-08-24 Fong LinCommits: 8Joined: 2010-09-14 @@ -3167,10 +3268,10 @@ - *4k5h1tCommits: 8Joined: 2021-08-26 + *Radhey ParekhCommits: 8Joined: 2021-04-01 - *Balazs VargaCommits: 8Joined: 2022-06-29 + *4k5h1tCommits: 8Joined: 2021-08-26 *Thies PierdolaCommits: 7Joined: 2011-01-28 @@ -3324,16 +3425,19 @@ *Dhiraj HoldenCommits: 7Joined: 2021-11-30 + *Liu HaoCommits: 7Joined: 2022-08-14 + + *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 @@ -3343,11 +3447,11 @@ *Xavier ALTCommits: 6Joined: 2011-03-06 + + *Anurag JainCommits: 6Joined: 2011-04-05 - - *Thomas CollertonCommits: 6Joined: 2011-11-18 @@ -3357,11 +3461,11 @@ *Anurag KanungoCommits: 6Joined: 2013-04-19 + + *tianyaoCommits: 6Joined: 2013-11-09 - - *Jeroen NijhofCommits: 6Joined: 2014-05-01 @@ -3371,11 +3475,11 @@ *Michel RenonCommits: 6Joined: 2015-05-19 + + *Fabio BusoCommits: 6Joined: 2015-11-01 - - *Sedat AkCommits: 6Joined: 2015-11-08 @@ -3385,11 +3489,11 @@ *Ricardo PalomaresCommits: 6Joined: 2016-01-16 + + *baltasarqCommits: 6Joined: 2016-02-24 - - *Steven GuoCommits: 6Joined: 2016-03-02 @@ -3399,11 +3503,11 @@ *RosenCommits: 6Joined: 2016-08-04 + + *giaccoCommits: 6Joined: 2016-10-11 - - *abdulwdCommits: 6Joined: 2016-12-22 @@ -3413,11 +3517,11 @@ *Jean-Sebastien BevilacquaCommits: 6Joined: 2017-02-09 + + *udareechkCommits: 6Joined: 2017-09-20 - - *Kemal AyhanCommits: 6Joined: 2019-12-18 @@ -3427,11 +3531,11 @@ *Batuhan TaskayaCommits: 6Joined: 2020-01-25 + + *Mehmet Emin BaşoğluCommits: 6Joined: 2020-01-25 - - *iakarsuCommits: 6Joined: 2020-01-25 @@ -3441,13 +3545,10 @@ *ViKrAm-BaisCommits: 6Joined: 2021-01-07 - - *msrijita18Commits: 6Joined: 2021-01-26 - - *Radhey ParekhCommits: 6Joined: 2021-04-01 + *msrijita18Commits: 6Joined: 2021-01-26 *Henrik PalomäkiCommits: 6Joined: 2021-10-18 @@ -3456,14 +3557,11 @@ *Ramreiso KashungCommits: 6Joined: 2021-12-22 - *Liu HaoCommits: 6Joined: 2022-08-14 + *Gil ForcadaCommits: 5Joined: 2010-09-28 - *Gil ForcadaCommits: 5Joined: 2010-09-28 - - *David HobleyCommits: 5Joined: 2010-10-04 @@ -3472,11 +3570,11 @@ *Antoine ProulxCommits: 5Joined: 2011-01-30 - - *Tobias RosenbergerCommits: 5Joined: 2011-01-31 + + *Jeffrey ChangCommits: 5Joined: 2011-06-01 @@ -3486,11 +3584,11 @@ *Michael T. WhiteleyCommits: 5Joined: 2011-11-25 - - *Gustavo Buzzatti PachecoCommits: 5Joined: 2011-12-15 + + *Wei Ming KhooCommits: 5Joined: 2012-02-17 @@ -3500,11 +3598,11 @@ *Pavel KysilkaCommits: 5Joined: 2012-06-25 - - *Bence BabatiCommits: 5Joined: 2012-08-13 + + *Pavel JaníkCommits: 5Joined: 2012-11-29 @@ -3514,11 +3612,11 @@ *Matthias HofmannCommits: 5Joined: 2013-03-08 - - *Miguel GomezCommits: 5Joined: 2013-04-02 + + *pje335_NLCommits: 5Joined: 2013-05-10 @@ -3528,11 +3626,11 @@ *Pader RezsoCommits: 5Joined: 2013-07-01 - - *MÁTÉ GergelyCommits: 5Joined: 2013-07-19 + + *Timothy MarkleCommits: 5Joined: 2014-01-31 @@ -3542,11 +3640,11 @@ *Pasi LallinahoCommits: 5Joined: 2015-06-02 - - *Berk GurekenCommits: 5Joined: 2015-10-01 + + *Yossi ZahnCommits: 5Joined: 2016-11-25 @@ -3556,11 +3654,11 @@ *Huzaifa IftikharCommits: 5Joined: 2016-12-19 - - *tamsil1amani3Commits: 5Joined: 2016-12-22 + + *Lukas RöllinCommits: 5Joined: 2017-02-06 @@ -3570,10 +3668,13 @@ *Corentin NoëlCommits: 5Joined: 2019-09-20 + + *Tolunay DündarCommits: 5Joined: 2019-12-18 + - *Tolunay DündarCommits: 5Joined: 2019-12-18 + *dldldCommits: 5Joined: 2019-12-18 *Eda Nur VarCommits: 5Joined: 2020-01-25 @@ -3632,226 +3733,229 @@ *Siddhant ChaudharyCommits: 5Joined: 2022-03-11 - *Povilas KanapickasCommits: 5Joined: 2022-08-24 + *jsalaCommits: 5Joined: 2022-06-19 - *Florian BircherCommits: 4Joined: 2010-10-16 + *Noel GrandinCommits: 5Joined: 2022-10-10 - *Andrew C. E. DentCommits: 4Joined: 2010-10-24 + *OmkarAcharekarCommits: 5Joined: 2022-10-15 + *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 + + *An LeendersCommits: 4Joined: 2011-01-25 *Alexander ThurgoodCommits: 4Joined: 2011-01-26 - - *ClioCommits: 4Joined: 2011-01-30 *Michael MuenchCommits: 4Joined: 2011-02-13 + + *Pantelis KoukousoulasCommits: 4Joined: 2011-03-14 *Samphan RaruenromCommits: 4Joined: 2011-03-24 - - *Andreas BeckerCommits: 4Joined: 2011-04-04 *Roland BaudinCommits: 4Joined: 2011-05-16 + + *André SchnabelCommits: 4Joined: 2011-05-31 *Tom TromeyCommits: 4Joined: 2011-08-11 - - *Wolfgang PechlanerCommits: 4Joined: 2011-09-04 *Cheng-Chia TsengCommits: 4Joined: 2012-01-16 + + *Kate GossCommits: 4Joined: 2012-02-11 *Mariana MarasoiuCommits: 4Joined: 2012-03-14 - - *Yong Lin MaCommits: 4Joined: 2012-06-07 *Raimundo MouraCommits: 4Joined: 2012-06-16 + + *Florian ReisingerCommits: 4Joined: 2012-06-22 *Nicholas ShanksCommits: 4Joined: 2012-09-04 - - *tinoCommits: 4Joined: 2012-12-03 *Joan MontanéCommits: 4Joined: 2013-02-22 + + *XiaoliCommits: 4Joined: 2013-03-23 *Sameer DeshmukhCommits: 4Joined: 2013-04-20 - - *Zheng FanCommits: 4Joined: 2013-04-22 *Elie RouxCommits: 4Joined: 2013-05-29 + + *Nourah.AlShoeibiCommits: 4Joined: 2013-07-07 *Honza HavlíčekCommits: 4Joined: 2013-07-27 - - *Andrea PescettiCommits: 4Joined: 2013-10-07 *Robert CampbellCommits: 4Joined: 2013-11-13 + + *Ulrich KitzingerCommits: 4Joined: 2013-11-30 *Ken BiondiCommits: 4Joined: 2014-03-05 - - *Jeffrey StedfastCommits: 4Joined: 2014-07-26 *Simon DannerCommits: 4Joined: 2014-08-02 + + *Kevin SuoCommits: 4Joined: 2014-11-06 *Aleksandr AndreevCommits: 4Joined: 2015-04-20 - - *Derrick RochaCommits: 4Joined: 2015-08-26 *Sahasranaman M SCommits: 4Joined: 2015-10-04 + + *ccshellerCommits: 4Joined: 2015-10-08 *pasqual milvaquesCommits: 4Joined: 2015-12-02 - - *aqcoderCommits: 4Joined: 2015-12-13 *Burcin AkalinCommits: 4Joined: 2015-12-18 + + *Kumar ThangavelCommits: 4Joined: 2016-01-04 *erdemdemirkapiCommits: 4Joined: 2016-01-30 - - *coypuCommits: 4Joined: 2016-02-03 *dtmCommits: 4Joined: 2016-02-11 + + *Tim EvesCommits: 4Joined: 2016-02-23 *GurkaranCommits: 4Joined: 2016-03-17 - - *Fabio BiocchettiCommits: 4Joined: 2016-10-21 *Gaurav DhingraCommits: 4Joined: 2016-12-03 + + *Patrick JaapCommits: 4Joined: 2017-01-30 *Piotr DrągCommits: 4Joined: 2017-03-05 - - *Fyodor YemelyanenkoCommits: 4Joined: 2017-08-21 *Olivier TilloyCommits: 4Joined: 2018-01-08 + + *Jon NermutCommits: 4Joined: 2018-01-20 *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 @@ -3861,11 +3965,11 @@ *Burak BalaCommits: 4Joined: 2020-01-26 + + *Mohamed SamehCommits: 4Joined: 2020-02-11 - - *Deb Barkley-YeungCommits: 4Joined: 2020-08-19 @@ -3875,11 +3979,11 @@ *VishwasCommits: 4Joined: 2020-12-31 + + *Aditya Pratap SinghCommits: 4Joined: 2021-02-01 - - *dipanshu124Commits: 4Joined: 2021-02-12 @@ -3889,17 +3993,28 @@ *tobiasCommits: 4Joined: 2021-06-03 + + *Gopi Krishna MenonCommits: 4Joined: 2021-06-07 - - *YildirayCommits: 4Joined: 2021-08-08 + *Juan C. SanzCommits: 4Joined: 2021-09-03 + + *ehsanCommits: 4Joined: 2022-07-01 + + + + *PoonamShokeenCommits: 4Joined: 2022-07-21 + + + *Chenxiong QiCommits: 4Joined: 2022-08-27 + Keith StribleyCommits: 3Joined: 2010-06-29 @@ -4086,11 +4201,14 @@ *n.r.pearsonCommits: 3Joined: 2015-09-09 - *AlexFCommits: 3Joined: 2015-11-12 + *Sergey FukanchikCommits: 3Joined: 2015-09-17 + *AlexFCommits: 3Joined: 2015-11-12 + + *Giovanni CaligarisCommits: 3Joined: 2015-11-30 @@ -4099,11 +4217,11 @@ *Johannes BergCommits: 3Joined: 2016-08-03 + + *drazilCommits: 3Joined: 2016-08-27 - - *Jacek FraczekCommits: 3Joined: 2016-10-05 @@ -4113,11 +4231,11 @@ *John Paul Adrian GlaubitzCommits: 3Joined: 2016-11-27 + + *bansan85Commits: 3Joined: 2016-12-21 - - *Dimitri BouronCommits: 3Joined: 2016-12-22 @@ -4127,11 +4245,11 @@ *Gabriel ChiquiniCommits: 3Joined: 2017-10-01 + + *Bán RóbertCommits: 3Joined: 2017-10-25 - - *Mark VecsernyesCommits: 3Joined: 2017-11-15 @@ -4141,11 +4259,11 @@ *Ahmed GHANMICommits: 3Joined: 2017-11-30 + + *Abhishek ShrivastavaCommits: 3Joined: 2018-01-17 - - *TelestoCommits: 3Joined: 2018-01-22 @@ -4155,11 +4273,11 @@ *Shubham VermaCommits: 3Joined: 2018-02-17 + + *Laurent GodardCommits: 3Joined: 2018-04-24 - - *Ulkem KasapogluCommits: 3Joined: 2018-07-04 @@ -4169,11 +4287,11 @@ *Omer Fatih CelikCommits: 3Joined: 2019-02-10 + + *Meryem EzberCommits: 3Joined: 2019-02-10 - - *Andrés MaldonadoCommits: 3Joined: 2019-02-21 @@ -4183,11 +4301,11 @@ *Stepas ToliautasCommits: 3Joined: 2019-12-16 + + *Michel ThomasCommits: 3Joined: 2020-02-01 - - *nienzuCommits: 3Joined: 2020-02-19 @@ -4197,11 +4315,11 @@ *Ian Barkley-YeungCommits: 3Joined: 2020-04-06 + + *Pierre MartyCommits: 3Joined: 2020-04-17 - - *Eivind SamsethCommits: 3Joined: 2020-05-16 @@ -4211,11 +4329,11 @@ *mariamfahmyCommits: 3Joined: 2020-10-16 + + *Leo WangCommits: 3Joined: 2020-10-18 - - *Gizem OzgunCommits: 3Joined: 2020-10-23 @@ -4225,11 +4343,11 @@ *Stéphane GuillouCommits: 3Joined: 2021-01-22 + + *Zeynep YavuzCommits: 3Joined: 2021-08-02 - - *Natalia GavrilovaCommits: 3Joined: 2021-09-24 @@ -4239,11 +4357,11 @@ *Arnaud VERSINICommits: 3Joined: 2021-12-19 + + *Renwa HiwaCommits: 3Joined: 2022-02-09 - - *Tushar JhamCommits: 3Joined: 2022-02-21 @@ -4251,391 +4369,391 @@ *Isha_DesaiCommits: 3Joined: 2022-04-06 - *Armin Le Grand (allotropia)Commits: 3Joined: 2022-06-27 + *Calvince OtienoCommits: 3Joined: 2022-10-14 + + + + + *Paris OplopoiosCommits: 3Joined: 2022-10-17 Loiseleur MichelCommits: 2Joined: 2010-09-14 - - *Justin MalcolmCommits: 2Joined: 2010-09-29 *Seo SanghyeonCommits: 2Joined: 2010-09-29 + + *Sean McNamaraCommits: 2Joined: 2010-09-29 *Robert SedakCommits: 2Joined: 2010-10-05 - - *Sean McMurrayCommits: 2Joined: 2010-10-20 *Nadav VinikCommits: 2Joined: 2010-10-21 + + *Marcin eXine MCommits: 2Joined: 2010-11-02 *Dwayne BaileyCommits: 2Joined: 2010-11-03 - - *Christoph NoackCommits: 2Joined: 2010-12-13 *Sophie GautierCommits: 2Joined: 2010-12-19 + + *Ed DeanCommits: 2Joined: 2011-01-14 *Jonathan CallenCommits: 2Joined: 2011-01-29 - - *Karsten GerloffCommits: 2Joined: 2011-02-06 *Jean Charles PapinCommits: 2Joined: 2011-02-11 + + *Tobias KranzCommits: 2Joined: 2011-02-17 *Matthias KloseCommits: 2Joined: 2011-03-01 - - *Michael NattererCommits: 2Joined: 2011-04-08 *Cyril RoelandtCommits: 2Joined: 2011-04-26 + + *Kelly AndersonCommits: 2Joined: 2011-05-31 *Michal SvecCommits: 2Joined: 2011-07-12 - - *Mohammad ElahiCommits: 2Joined: 2011-08-27 *Takashi NakamotoCommits: 2Joined: 2011-08-28 + + *Andreu Correa CasablancaCommits: 2Joined: 2011-09-11 *Jan HubickaCommits: 2Joined: 2011-09-12 - - *Arno TeigsethCommits: 2Joined: 2011-09-14 *Maxim IorshCommits: 2Joined: 2011-10-05 + + *Emanuele FiaCommits: 2Joined: 2011-11-02 *Yury TarasievichCommits: 2Joined: 2011-11-23 - - *Mateusz ZasuwikCommits: 2Joined: 2011-12-20 *Milos SramekCommits: 2Joined: 2012-01-20 + + *Andreas SchierlCommits: 2Joined: 2012-01-30 *PKEuSCommits: 2Joined: 2012-02-05 - - *UrmasCommits: 2Joined: 2012-02-13 *Bartolomé Sánchez SaladoCommits: 2Joined: 2012-02-18 + + *Greggory HernandezCommits: 2Joined: 2012-02-22 *William GathoyeCommits: 2Joined: 2012-02-28 - - *Karthik A PadmanabhanCommits: 2Joined: 2012-03-31 *Mark WolfCommits: 2Joined: 2012-04-04 + + *Andrew HigginsonCommits: 2Joined: 2012-04-10 *Abeer SethiCommits: 2Joined: 2012-04-12 - - *Ferran VidalCommits: 2Joined: 2012-04-21 *Vicente VendrellCommits: 2Joined: 2012-04-23 + + *David SteeleCommits: 2Joined: 2012-04-24 *Jose Santiago Jimenez SarmientoCommits: 2Joined: 2012-04-24 - - *Marc GarciaCommits: 2Joined: 2012-05-04 *Martyn RussellCommits: 2Joined: 2012-06-07 + + *Jesso Clarence MuruganCommits: 2Joined: 2012-06-23 *Ward van WanrooijCommits: 2Joined: 2012-06-25 - - *Yuri DarioCommits: 2Joined: 2012-07-18 *Horacio FernandesCommits: 2Joined: 2012-07-20 + + *Andras BartekCommits: 2Joined: 2012-08-06 *Daniel HerdeCommits: 2Joined: 2012-08-09 - - *Johann MessnerCommits: 2Joined: 2012-08-28 *Flex LiuCommits: 2Joined: 2012-09-04 + + *Sergey FarbotkaCommits: 2Joined: 2012-09-21 *Louis PossozCommits: 2Joined: 2012-10-26 - - *Christos StrubulisCommits: 2Joined: 2012-12-09 *Arne de BruijnCommits: 2Joined: 2012-12-11 + + *Milan CrhaCommits: 2Joined: 2013-02-07 *Adam MrózCommits: 2Joined: 2013-02-24 - - *Gregg KingCommits: 2Joined: 2013-02-26 *Benedikt MorbachCommits: 2Joined: 2013-03-10 + + *Moritz KuettCommits: 2Joined: 2013-03-23 *Akash ShetyeCommits: 2Joined: 2013-03-23 - - *Janit AnjariaCommits: 2Joined: 2013-04-19 *mmeof2Commits: 2Joined: 2013-05-03 + + *Donizete WaterkemperCommits: 2Joined: 2013-05-23 *Rolf HemmerlingCommits: 2Joined: 2013-06-15 - - *Jing XianCommits: 2Joined: 2013-06-26 *Chris HoppeCommits: 2Joined: 2013-06-27 + + *Ri GangHuCommits: 2Joined: 2013-07-28 *Neil MooreCommits: 2Joined: 2013-08-09 - - *Viktor VargaCommits: 2Joined: 2013-08-28 *Janos FaragoCommits: 2Joined: 2013-09-03 + + *Richard HughesCommits: 2Joined: 2013-10-01 *Mathieu ParentCommits: 2Joined: 2013-10-14 - - *Jagan LokanathaCommits: 2Joined: 2013-11-19 *Anderson RobertoCommits: 2Joined: 2014-01-15 + + *Martin LiškaCommits: 2Joined: 2014-03-26 *Bisal NayalCommits: 2Joined: 2014-05-07 - - *Hussian AlamriCommits: 2Joined: 2014-05-14 *Mukhiddin YusupovCommits: 2Joined: 2014-05-19 + + *Clarence GuoCommits: 2Joined: 2014-05-26 *Hideki IkedaCommits: 2Joined: 2014-06-25 - - *Boris EgorovCommits: 2Joined: 2014-09-08 *YiiChang YenCommits: 2Joined: 2014-10-16 + + *Vinicius VendraminiCommits: 2Joined: 2014-10-22 *Naruhiko OgasawaraCommits: 2Joined: 2014-10-25 - - *Daniel StoneCommits: 2Joined: 2014-10-29 *Supreme AryalCommits: 2Joined: 2014-12-04 + + *Gary HoustonCommits: 2Joined: 2014-12-15 *Mark WilliamsCommits: 2Joined: 2014-12-17 - - *Clément LassieurCommits: 2Joined: 2014-12-21 *Rimas KudelisCommits: 2Joined: 2015-01-06 + + *dbeurleCommits: 2Joined: 2015-01-12 *Kishor BhatCommits: 2Joined: 2015-01-28 - - *gamebusterzCommits: 2Joined: 2015-02-19 *Piet van OostrumCommits: 2Joined: 2015-03-12 + + *Laszlo Kis-AdamCommits: 2Joined: 2015-03-12 *Markus WernigCommits: 2Joined: 2015-03-18 - - *Jingtao YanCommits: 2Joined: 2015-03-23 *Austin ChenCommits: 2Joined: 2015-03-25 + + *Valter MuraCommits: 2Joined: 2015-06-07 *Carlos LuqueCommits: 2Joined: 2015-07-16 - - *Lubosz SarneckiCommits: 2Joined: 2015-08-20 - *Sergey FukanchikCommits: 2Joined: 2015-09-17 - - *alexey.chemichevCommits: 2Joined: 2015-11-18 + + *Sheikha AL-HinaiCommits: 2Joined: 2015-12-28 - - *Yogesh DesaiCommits: 2Joined: 2016-01-05 @@ -4645,11 +4763,11 @@ *ackepenekCommits: 2Joined: 2016-02-21 + + *Martin NathansenCommits: 2Joined: 2016-04-18 - - *Michal KubecekCommits: 2Joined: 2016-06-02 @@ -4659,11 +4777,11 @@ *Sophie SuCommits: 2Joined: 2016-08-27 + + *sllCommits: 2Joined: 2016-09-06 - - *Pierre LepageCommits: 2Joined: 2016-11-05 @@ -4673,11 +4791,11 @@ *G_ZoltanCommits: 2Joined: 2016-12-27 + + *George KorepanovCommits: 2Joined: 2017-01-06 - - *Jeremy BichaCommits: 2Joined: 2017-02-06 @@ -4687,11 +4805,11 @@ *blendergeekCommits: 2Joined: 2017-04-08 + + *Alexey VlasovCommits: 2Joined: 2017-04-12 - - *fxwanCommits: 2Joined: 2017-05-15 @@ -4701,11 +4819,11 @@ *Sabin FrandesCommits: 2Joined: 2017-09-15 + + *Your NameCommits: 2Joined: 2017-10-09 - - *G??bor KoruhelyCommits: 2Joined: 2017-10-25 @@ -4715,11 +4833,11 @@ *Timotej LazarCommits: 2Joined: 2017-11-22 + + *martinb214Commits: 2Joined: 2017-11-28 - - *Jon NermutCommits: 2Joined: 2018-01-13 @@ -4729,11 +4847,11 @@ *brian houston morrowCommits: 2Joined: 2018-01-24 + + *Dmitri KharchevCommits: 2Joined: 2018-01-27 - - *Andika TriwidadaCommits: 2Joined: 2018-02-15 @@ -4743,11 +4861,11 @@ *Victor MireyevCommits: 2Joined: 2018-05-04 + + *Kevin DubrulleCommits: 2Joined: 2018-07-07 - - *George WoodCommits: 2Joined: 2018-07-25 @@ -4757,11 +4875,11 @@ *Simon QuigleyCommits: 2Joined: 2018-10-11 + + *Mark DoboCommits: 2Joined: 2018-10-20 - - *Izabela BakollariCommits: 2Joined: 2018-10-27 @@ -4771,11 +4889,11 @@ *Tóth AttilaCommits: 2Joined: 2018-12-30 + + *Patrik VasCommits: 2Joined: 2018-12-31 - - *Dawid GanCommits: 2Joined: 2019-01-09 @@ -4785,11 +4903,11 @@ *kaishu-sahuCommits: 2Joined: 2019-01-27 + + *Phil KrylovCommits: 2Joined: 2019-02-10 - - *Muzaffer Kadir YILMAZCommits: 2Joined: 2019-02-10 @@ -4799,11 +4917,11 @@ *Jaromir WysogladCommits: 2Joined: 2019-03-27 + + *Rtch90Commits: 2Joined: 2019-04-22 - - *DarkByt31Commits: 2Joined: 2019-04-22 @@ -4813,11 +4931,11 @@ *DaeHyun SungCommits: 2Joined: 2019-06-01 + + *John ZhangCommits: 2Joined: 2019-09-23 - - *Mayank SumanCommits: 2Joined: 2019-10-03 @@ -4827,11 +4945,11 @@ *Mattia RizzoloCommits: 2Joined: 2019-10-23 + + *Batuhan Görkem BenzerCommits: 2Joined: 2019-12-18 - - *Desmin AlpaslanCommits: 2Joined: 2019-12-18 @@ -4841,11 +4959,11 @@ *Bjoern KirchhoffCommits: 2Joined: 2020-01-15 + + *Burak BalaCommits: 2Joined: 2020-01-25 - - *Marina LatiniCommits: 2Joined: 2020-02-11 @@ -4855,11 +4973,11 @@ *jamesCommits: 2Joined: 2020-02-28 + + *Andrew Lee (李健秋)Commits: 2Joined: 2020-03-07 - - *Jean-Louis FuchsCommits: 2Joined: 2020-03-10 @@ -4869,11 +4987,11 @@ *FatihCommits: 2Joined: 2020-04-23 + + *Yunusemre ŞentürkCommits: 2Joined: 2020-05-14 - - *Ilkyu JuCommits: 2Joined: 2020-08-08 @@ -4883,11 +5001,11 @@ *Luke DixonCommits: 2Joined: 2020-08-30 + + *Sven LüppkenCommits: 2Joined: 2020-10-30 - - *Zeynep İnkayaCommits: 2Joined: 2020-11-21 @@ -4897,11 +5015,11 @@ *Bartu BayazıtCommits: 2Joined: 2020-11-21 + + *Mücahid AydinCommits: 2Joined: 2020-11-21 - - *ShyamPraveenSinghCommits: 2Joined: 2020-11-24 @@ -4911,11 +5029,11 @@ *siddheshpatil777Commits: 2Joined: 2020-12-19 + + *halfhiddencodeCommits: 2Joined: 2020-12-26 - - *princesinghtomarCommits: 2Joined: 2020-12-28 @@ -4925,11 +5043,11 @@ *ShobhitCommits: 2Joined: 2021-01-30 + + *Quan NguyenCommits: 2Joined: 2021-02-09 - - *Eyal RozenbergCommits: 2Joined: 2021-02-13 @@ -4939,11 +5057,11 @@ *MoazCommits: 2Joined: 2021-02-21 + + *Winston Min TjongCommits: 2Joined: 2021-03-02 - - *Gökay ŞatırCommits: 2Joined: 2021-03-14 @@ -4953,11 +5071,11 @@ *rounakCommits: 2Joined: 2021-03-31 + + *sarynasserCommits: 2Joined: 2021-04-10 - - *Mihail BalabanovCommits: 2Joined: 2021-04-11 @@ -4967,11 +5085,11 @@ *Batmunkh DorjgotovCommits: 2Joined: 2021-04-27 + + *Harshita NagCommits: 2Joined: 2021-06-25 - - *Sabyasachi BhoiCommits: 2Joined: 2021-07-22 @@ -4981,16 +5099,13 @@ *oguzbalkayaCommits: 2Joined: 2021-08-03 - - *Ankur KhandelwalCommits: 2Joined: 2021-08-09 - - *Karan AbrolCommits: 2Joined: 2021-08-11 + *Ankur KhandelwalCommits: 2Joined: 2021-08-09 - *jucasacaCommits: 2Joined: 2021-09-03 + *Karan AbrolCommits: 2Joined: 2021-08-11 *Emanuel SchorschCommits: 2Joined: 2021-10-04 @@ -5043,20 +5158,37 @@ + *Laurent BallandCommits: 2Joined: 2022-06-19 + + *Nathan Pratta TeodosioCommits: 2Joined: 2022-06-21 - *PoonamShokeenCommits: 2Joined: 2022-07-21 + *Mahdi TizabiCommits: 2Joined: 2022-06-25 *Stanislav LopatinCommits: 2Joined: 2022-08-07 + + + + *SatyaCommits: 2Joined: 2022-09-05 + - *NeilBrownCommits: 1Joined: 2010-09-28 + *galjitCommits: 2Joined: 2022-09-07 + + + *Andrea RosettiCommits: 2Joined: 2022-09-15 + + + *RakielleCommits: 2Joined: 2022-10-14 + *NeilBrownCommits: 1Joined: 2010-09-28 + + *Alexandr N. ZamaraevCommits: 1Joined: 2010-10-01 @@ -5065,11 +5197,11 @@ *Neil StalkerCommits: 1Joined: 2010-10-02 + + *Evertjan GarretsenCommits: 1Joined: 2010-10-04 - - *Denis LackovicCommits: 1Joined: 2010-10-05 @@ -5079,11 +5211,11 @@ *Rubén JáñezCommits: 1Joined: 2010-10-11 + + *Trevor MurphyCommits: 1Joined: 2010-10-20 - - *Wolfgang SilbermayrCommits: 1Joined: 2010-10-21 @@ -5093,11 +5225,11 @@ *Kalman KemenczyCommits: 1Joined: 2010-10-28 + + *Alexandre FournierCommits: 1Joined: 2010-11-06 - - *Christopher BackhouseCommits: 1Joined: 2010-12-06 @@ -5107,11 +5239,11 @@ *camilleCommits: 1Joined: 2010-12-13 + + *Freek de KruijfCommits: 1Joined: 2010-12-19 - - *Paolo PozzanCommits: 1Joined: 2010-12-19 @@ -5121,11 +5253,11 @@ *armijnCommits: 1Joined: 2010-12-30 + + *AWASHIRO IkuyaCommits: 1Joined: 2011-01-04 - - *Andy HearnCommits: 1Joined: 2011-01-09 @@ -5135,11 +5267,11 @@ *Guillaume FillolCommits: 1Joined: 2011-01-29 + + *pgajdosCommits: 1Joined: 2011-01-31 - - *Andreas SliwkaCommits: 1Joined: 2011-02-06 @@ -5149,11 +5281,11 @@ *Danny RobertsCommits: 1Joined: 2011-02-18 + + *Jean-Yves RoyerCommits: 1Joined: 2011-03-07 - - *Rafael CabralCommits: 1Joined: 2011-03-31 @@ -5163,11 +5295,11 @@ *Paulo JoséCommits: 1Joined: 2011-04-01 + + *Dona HertelCommits: 1Joined: 2011-04-14 - - *Maxime CôtéCommits: 1Joined: 2011-04-19 @@ -5177,11 +5309,11 @@ *Jan NieuwenhuizenCommits: 1Joined: 2011-04-28 + + *Cassio NeriCommits: 1Joined: 2011-05-01 - - *Marcel HBCommits: 1Joined: 2011-05-03 @@ -5191,11 +5323,11 @@ *Jeff AignerCommits: 1Joined: 2011-06-09 + + *David PenzesCommits: 1Joined: 2011-06-14 - - *Dolives BenoitCommits: 1Joined: 2011-07-04 @@ -5205,11 +5337,11 @@ *Christophe StrobbeCommits: 1Joined: 2011-08-09 + + *Andor ErtseyCommits: 1Joined: 2011-09-04 - - *Hugo Beauzée-LuyssenCommits: 1Joined: 2011-09-28 @@ -5219,11 +5351,11 @@ *Stefan WeigelCommits: 1Joined: 2011-10-17 + + *Pádraig BradyCommits: 1Joined: 2011-10-21 - - *Andrew WestCommits: 1Joined: 2011-10-21 @@ -5233,11 +5365,11 @@ *Karl KoehlerCommits: 1Joined: 2011-11-11 + + *Modestas RimkusCommits: 1Joined: 2011-11-21 - - *Roman EiseleCommits: 1Joined: 2011-11-23 @@ -5247,11 +5379,11 @@ *Juan Pablo Martínez CortésCommits: 1Joined: 2011-11-28 + + *JesseCommits: 1Joined: 2011-12-14 - - *Vincent PovirkCommits: 1Joined: 2011-12-19 @@ -5261,11 +5393,11 @@ *James CCommits: 1Joined: 2011-12-20 + + *Tzvetelina TzenevaCommits: 1Joined: 2011-12-22 - - *Victor LeeCommits: 1Joined: 2011-12-24 @@ -5275,11 +5407,11 @@ *Kenneth AafløyCommits: 1Joined: 2012-01-11 + + *Rich WarehamCommits: 1Joined: 2012-01-12 - - *Da'angh KhagarothCommits: 1Joined: 2012-01-16 @@ -5289,11 +5421,11 @@ *Martin RichardCommits: 1Joined: 2012-01-31 + + *dbarisakkurtCommits: 1Joined: 2012-02-02 - - *Daniel MihalyiCommits: 1Joined: 2012-02-06 @@ -5303,11 +5435,11 @@ *Masataka ShinkeCommits: 1Joined: 2012-02-15 + + *Fernando GovernatoreCommits: 1Joined: 2012-02-25 - - *Juergen SteinhilberCommits: 1Joined: 2012-03-05 @@ -5317,11 +5449,11 @@ *Karan DesaiCommits: 1Joined: 2012-04-01 + + *Arfrever Frehtes Taifersar ArahesisCommits: 1Joined: 2012-04-02 - - *Aldo Román NureñaCommits: 1Joined: 2012-04-09 @@ -5331,11 +5463,11 @@ *Udo SchuermannCommits: 1Joined: 2012-04-16 + + *Ross BurtonCommits: 1Joined: 2012-04-18 - - *Jaime NavarroCommits: 1Joined: 2012-04-20 @@ -5345,11 +5477,11 @@ *Vicente Rafael Estevez VacasCommits: 1Joined: 2012-04-22 + + *Monica Ramirez ArcedaCommits: 1Joined: 2012-04-23 - - *Javier Silva SanahujaCommits: 1Joined: 2012-04-23 @@ -5359,11 +5491,11 @@ *Jose ManuelCommits: 1Joined: 2012-04-25 + + *Miguel FernándezCommits: 1Joined: 2012-04-26 - - *Javier CatalaCommits: 1Joined: 2012-04-26 @@ -5373,11 +5505,11 @@ *Gordon LackCommits: 1Joined: 2012-05-09 + + *Daniel NaberCommits: 1Joined: 2012-05-09 - - *Ionut BiruCommits: 1Joined: 2012-05-14 @@ -5387,11 +5519,11 @@ *Travis CarterCommits: 1Joined: 2012-06-22 + + *Peter TillemansCommits: 1Joined: 2012-06-26 - - *Phil HartCommits: 1Joined: 2012-06-29 @@ -5401,11 +5533,11 @@ *Tim-Philipp MüllerCommits: 1Joined: 2012-07-29 + + *Tim JanikCommits: 1Joined: 2012-08-10 - - *Joseph BrownCommits: 1Joined: 2012-08-14 @@ -5415,11 +5547,11 @@ *Dave RichardsCommits: 1Joined: 2012-08-22 + + *DaveCommits: 1Joined: 2012-08-23 - - *Marco BiscaroCommits: 1Joined: 2012-08-27 @@ -5429,11 +5561,11 @@ *Douglas Rodrigues de AlmeidaCommits: 1Joined: 2012-09-15 + + *sagarCommits: 1Joined: 2012-09-15 - - *Andrew RistCommits: 1Joined: 2012-10-05 @@ -5443,11 +5575,11 @@ *Chen ZuoJunCommits: 1Joined: 2012-10-08 + + *Philipp KaluzaCommits: 1Joined: 2012-10-21 - - *LesterCommits: 1Joined: 2012-10-23 @@ -5457,11 +5589,11 @@ *Naser SharifiCommits: 1Joined: 2012-11-26 + + *Paula MannesCommits: 1Joined: 2012-11-30 - - *Olivier PlotonCommits: 1Joined: 2012-12-12 @@ -5471,11 +5603,11 @@ *Quentin PradetCommits: 1Joined: 2012-12-21 + + *Tadele AssefaCommits: 1Joined: 2013-01-15 - - *Dennis E. HamiltonCommits: 1Joined: 2013-01-19 @@ -5485,11 +5617,11 @@ *Mark WrightCommits: 1Joined: 2013-02-09 + + *Christopher HotchkissCommits: 1Joined: 2013-02-15 - - *Andrew BranchCommits: 1Joined: 2013-02-20 @@ -5499,11 +5631,11 @@ *Hamza AbdelkebirCommits: 1Joined: 2013-02-23 + + *Valek FilippovCommits: 1Joined: 2013-02-23 - - *Kenneth BeckCommits: 1Joined: 2013-03-02 @@ -5513,11 +5645,11 @@ *Gábor NyersCommits: 1Joined: 2013-03-02 + + *Vojta KoukalCommits: 1Joined: 2013-03-03 - - *Ondřej SmržCommits: 1Joined: 2013-03-10 @@ -5527,11 +5659,11 @@ *vincentCommits: 1Joined: 2013-03-22 + + *Johannes WidmerCommits: 1Joined: 2013-03-23 - - *Jacqueline RahemipourCommits: 1Joined: 2013-03-23 @@ -5541,11 +5673,11 @@ *Tomas TurekCommits: 1Joined: 2013-03-24 + + *Goran RakicCommits: 1Joined: 2013-03-30 - - *Hansgerd SchneiderCommits: 1Joined: 2013-04-02 @@ -5555,11 +5687,11 @@ *Ashish BanerjeeCommits: 1Joined: 2013-04-04 + + *Irányossy Knoblauch ArtúrCommits: 1Joined: 2013-04-06 - - *Jakub GolebiewskiCommits: 1Joined: 2013-04-09 @@ -5569,11 +5701,11 @@ *tinderboxCommits: 1Joined: 2013-04-11 + + *Alex IvanCommits: 1Joined: 2013-04-15 - - *Ota ChasákCommits: 1Joined: 2013-04-24 @@ -5583,11 +5715,11 @@ *Yohei YukawaCommits: 1Joined: 2013-05-06 + + *ricardobottoCommits: 1Joined: 2013-05-18 - - *Jonathan SchultzCommits: 1Joined: 2013-05-22 @@ -5597,11 +5729,11 @@ *Tim RichardsonCommits: 1Joined: 2013-06-04 + + *Eric S. RaymondCommits: 1Joined: 2013-06-07 - - *Jean-François Fortin TamCommits: 1Joined: 2013-06-10 @@ -5611,11 +5743,11 @@ *Peng GaoCommits: 1Joined: 2013-06-16 + + *sonakshi nathaniCommits: 1Joined: 2013-06-26 - - *Alaa.BukhariCommits: 1Joined: 2013-07-04 @@ -5625,11 +5757,11 @@ *Reem.ALotaibiCommits: 1Joined: 2013-07-25 + + *Michael DuelliCommits: 1Joined: 2013-08-01 - - *Srijan ChoudharyCommits: 1Joined: 2013-08-10 @@ -5639,11 +5771,11 @@ *Stefano FacchiniCommits: 1Joined: 2013-08-22 + + *James Michael DuPontCommits: 1Joined: 2013-08-30 - - *Raymond WellsCommits: 1Joined: 2013-09-02 @@ -5653,11 +5785,11 @@ *Henning DiedlerCommits: 1Joined: 2013-11-02 + + *matt_51Commits: 1Joined: 2013-11-05 - - *Rolf KoetterCommits: 1Joined: 2013-11-05 @@ -5667,11 +5799,11 @@ *Ayantha RandikaCommits: 1Joined: 2014-01-23 + + *Michal SiedlaczekCommits: 1Joined: 2014-01-25 - - *J. Fernando LagrangeCommits: 1Joined: 2014-02-02 @@ -5681,11 +5813,11 @@ *Mathias SuppCommits: 1Joined: 2014-02-25 + + *Tarun KumarCommits: 1Joined: 2014-03-07 - - *Jason GerlowskiCommits: 1Joined: 2014-03-07 @@ -5695,11 +5827,11 @@ *Manas JoshiCommits: 1Joined: 2014-03-17 + + *gdm.manmeetCommits: 1Joined: 2014-03-18 - - *Milan ZelenkaCommits: 1Joined: 2014-03-26 @@ -5709,11 +5841,11 @@ *Aditya KaleCommits: 1Joined: 2014-04-01 + + *Ryo ONODERACommits: 1Joined: 2014-04-07 - - *Michal HorakCommits: 1Joined: 2014-04-21 @@ -5723,11 +5855,11 @@ *Apostolos SyropoulosCommits: 1Joined: 2014-05-07 + + *nrbrtx@gmail.comCommits: 1Joined: 2014-06-10 - - *Shreyansh GandhiCommits: 1Joined: 2014-06-10 @@ -5737,11 +5869,11 @@ *Robin KumarCommits: 1Joined: 2014-06-17 + + *Dushyant BhalgamiCommits: 1Joined: 2014-07-04 - - *Fahad Al-SaidiCommits: 1Joined: 2014-07-16 @@ -5751,11 +5883,11 @@ *Heiko ScheidtCommits: 1Joined: 2014-08-03 + + *xjclCommits: 1Joined: 2014-08-04 - - *Audrey TangCommits: 1Joined: 2014-08-05 @@ -5765,11 +5897,11 @@ *Jörg SonnenbergerCommits: 1Joined: 2014-08-28 + + *PhyzerCommits: 1Joined: 2014-09-13 - - *Babu VincentCommits: 1Joined: 2014-09-19 @@ -5779,11 +5911,11 @@ *Lennart PoetteringCommits: 1Joined: 2014-10-09 + + *Arkadiusz MiśkiewiczCommits: 1Joined: 2014-10-09 - - *Ruggero CyrilleCommits: 1Joined: 2014-10-18 @@ -5793,11 +5925,11 @@ *Jonathan RiddellCommits: 1Joined: 2014-11-22 + + *Foo Lai ChooCommits: 1Joined: 2014-11-26 - - *galbarnissanCommits: 1Joined: 2014-12-03 @@ -5807,11 +5939,11 @@ *Juan A. Suarez RomeroCommits: 1Joined: 2014-12-15 + + *Maarten HoesCommits: 1Joined: 2014-12-20 - - *Pieter AdriaensenCommits: 1Joined: 2014-12-21 @@ -5821,11 +5953,11 @@ *Péter SzathmáryCommits: 1Joined: 2015-01-07 + + *Edmund LaugassonCommits: 1Joined: 2015-01-07 - - *Michael KovarikCommits: 1Joined: 2015-01-07 @@ -5835,11 +5967,11 @@ *Simon WilperCommits: 1Joined: 2015-01-24 + + *Swachhand LokhandeCommits: 1Joined: 2015-03-07 - - *Michael HornCommits: 1Joined: 2015-03-21 @@ -5849,11 +5981,11 @@ *robert BabiakCommits: 1Joined: 2015-03-25 + + *Dobra GaborCommits: 1Joined: 2015-04-02 - - *Jorge Cunha MendesCommits: 1Joined: 2015-04-03 @@ -5863,11 +5995,11 @@ *Petr GajdosCommits: 1Joined: 2015-04-07 + + *ritztroCommits: 1Joined: 2015-04-11 - - *massinissaHamidiCommits: 1Joined: 2015-05-07 @@ -5877,11 +6009,11 @@ *Sam TukeCommits: 1Joined: 2015-05-21 + + *umairshahidCommits: 1Joined: 2015-05-29 - - *Antoine CœurCommits: 1Joined: 2015-06-11 @@ -5891,11 +6023,11 @@ *Raj NatarajanCommits: 1Joined: 2015-07-23 + + *Florian EffenbergerCommits: 1Joined: 2015-08-04 - - *Fernando PiraniCommits: 1Joined: 2015-08-04 @@ -5905,11 +6037,11 @@ *Joan ParaisoCommits: 1Joined: 2015-09-25 + + *Slávek BankoCommits: 1Joined: 2015-10-10 - - *Timothée IsnardCommits: 1Joined: 2015-10-11 @@ -5919,11 +6051,11 @@ *GhasanCommits: 1Joined: 2015-11-09 + + *Mihovil StanićCommits: 1Joined: 2015-11-11 - - *Keigo KawamuraCommits: 1Joined: 2015-11-16 @@ -5933,11 +6065,11 @@ *Reto SchneiderCommits: 1Joined: 2015-11-20 + + *Willian BriottoCommits: 1Joined: 2015-11-21 - - *Nicola PovoleriCommits: 1Joined: 2015-11-28 @@ -5947,11 +6079,11 @@ *Pierre SauterCommits: 1Joined: 2015-12-01 + + *William BonnetCommits: 1Joined: 2015-12-05 - - *Johannes HaufCommits: 1Joined: 2015-12-31 @@ -5961,11 +6093,11 @@ *shubhamtibraCommits: 1Joined: 2016-01-16 + + *Nusaiba Al-KindiCommits: 1Joined: 2016-01-21 - - *Gabriele PonzoCommits: 1Joined: 2016-01-29 @@ -5975,11 +6107,11 @@ *Christoph BrillCommits: 1Joined: 2016-02-09 + + *Hank LeiningerCommits: 1Joined: 2016-02-27 - - *Apachev IvanCommits: 1Joined: 2016-03-08 @@ -5989,11 +6121,11 @@ *Mohamed ThabetCommits: 1Joined: 2016-03-13 + + *Dag WieersCommits: 1Joined: 2016-03-13 - - *Alexandru MoscuCommits: 1Joined: 2016-03-18 @@ -6003,11 +6135,11 @@ *JBurantCommits: 1Joined: 2016-04-05 + + *sunwebCommits: 1Joined: 2016-04-08 - - *Seraphime KirkovskiCommits: 1Joined: 2016-04-29 @@ -6017,11 +6149,11 @@ *PeterCommits: 1Joined: 2016-05-03 + + *PrashantCommits: 1Joined: 2016-05-17 - - *Sam TygierCommits: 1Joined: 2016-05-22 @@ -6031,11 +6163,11 @@ *Zhengqiang WangCommits: 1Joined: 2016-06-02 + + *anwilli5Commits: 1Joined: 2016-06-06 - - *emahaldar/emCommits: 1Joined: 2016-06-13 @@ -6045,11 +6177,11 @@ *Otto KekäläinenCommits: 1Joined: 2016-07-03 + + *Julian MehneCommits: 1Joined: 2016-08-04 - - *James ClarkeCommits: 1Joined: 2016-08-05 @@ -6059,11 +6191,11 @@ *rpmbuildCommits: 1Joined: 2016-08-15 + + *Zenaan HarknessCommits: 1Joined: 2016-08-22 - - *Andrea MussapCommits: 1Joined: 2016-10-02 @@ -6073,11 +6205,11 @@ *JookiaCommits: 1Joined: 2016-10-08 + + *Mirco RondiniCommits: 1Joined: 2016-10-10 - - *Chandanathil P. GeevanCommits: 1Joined: 2016-10-24 @@ -6087,11 +6219,11 @@ *Tamás GulácsiCommits: 1Joined: 2016-11-11 + + *Owen GenatCommits: 1Joined: 2016-11-20 - - *Christina AccioneCommits: 1Joined: 2016-11-22 @@ -6101,11 +6233,11 @@ *Justn LavoieCommits: 1Joined: 2016-12-30 + + *thvalloisCommits: 1Joined: 2017-01-03 - - *Saurav SachidanandCommits: 1Joined: 2017-01-17 @@ -6115,11 +6247,11 @@ *yellowflash104Commits: 1Joined: 2017-02-12 + + *Mike GorseCommits: 1Joined: 2017-03-11 - - *Atef haresCommits: 1Joined: 2017-03-12 @@ -6129,11 +6261,11 @@ *Umang JainCommits: 1Joined: 2017-03-13 + + *udaycoderCommits: 1Joined: 2017-03-14 - - *Dennis NielenCommits: 1Joined: 2017-03-21 @@ -6143,11 +6275,11 @@ *Gabriel HerreraCommits: 1Joined: 2017-04-05 + + *Werner TietzCommits: 1Joined: 2017-04-11 - - *nikkiCommits: 1Joined: 2017-04-12 @@ -6157,11 +6289,11 @@ *Naeil ZOUEIDICommits: 1Joined: 2017-04-26 + + *frederic vromanCommits: 1Joined: 2017-05-12 - - *KappanneoCommits: 1Joined: 2017-05-29 @@ -6171,11 +6303,11 @@ *Francesco GradiCommits: 1Joined: 2017-05-29 + + *dcvbCommits: 1Joined: 2017-07-06 - - *Sean StanglCommits: 1Joined: 2017-07-09 @@ -6185,11 +6317,11 @@ *Aditya DewanCommits: 1Joined: 2017-07-15 + + *serdarot5Commits: 1Joined: 2017-08-05 - - *Sanjaykumar Girishkumar PatelCommits: 1Joined: 2017-08-19 @@ -6199,11 +6331,11 @@ *66kesara99Commits: 1Joined: 2017-09-23 + + *Stoyan DimitrovCommits: 1Joined: 2017-10-01 - - *nigeldiasCommits: 1Joined: 2017-10-02 @@ -6213,11 +6345,11 @@ *Tjipke van der HeideCommits: 1Joined: 2017-10-12 + + *Kristóf UmannCommits: 1Joined: 2017-10-25 - - *qzhengCommits: 1Joined: 2017-11-14 @@ -6227,11 +6359,11 @@ *Dominique LeuenbergerCommits: 1Joined: 2018-01-05 + + *Gabriele PonzoCommits: 1Joined: 2018-02-06 - - *Rostislav KondratenkoCommits: 1Joined: 2018-02-21 @@ -6241,11 +6373,11 @@ *HrishabhCommits: 1Joined: 2018-03-10 + + *Álex PuchadesCommits: 1Joined: 2018-03-14 - - *kowtherCommits: 1Joined: 2018-04-06 @@ -6255,11 +6387,11 @@ *Kevin Brubeck UnhammerCommits: 1Joined: 2018-04-14 + + *Heiko TietzeCommits: 1Joined: 2018-04-16 - - *DiadloCommits: 1Joined: 2018-05-23 @@ -6269,11 +6401,11 @@ *orbeaCommits: 1Joined: 2018-06-01 + + *Louis SautierCommits: 1Joined: 2018-06-10 - - *Ali AhmadiCommits: 1Joined: 2018-06-26 @@ -6283,11 +6415,11 @@ *Caio B. SilvaCommits: 1Joined: 2018-07-23 + + *U-Vladimir\VadimCommits: 1Joined: 2018-08-05 - - *Don LewisCommits: 1Joined: 2018-08-22 @@ -6297,11 +6429,11 @@ *Leo MoonsCommits: 1Joined: 2018-08-26 + + *AlicVBCommits: 1Joined: 2018-10-17 - - *Alain RomedenneCommits: 1Joined: 2018-11-22 @@ -6311,11 +6443,11 @@ *Rizal MuttaqinCommits: 1Joined: 2018-12-18 + + *Çağrı DolazCommits: 1Joined: 2018-12-30 - - *Doğa Deniz ArıcıCommits: 1Joined: 2018-12-30 @@ -6325,11 +6457,11 @@ *KomalCommits: 1Joined: 2019-01-12 + + *Ajay MahatoCommits: 1Joined: 2019-01-21 - - *Jim JagielskiCommits: 1Joined: 2019-01-23 @@ -6339,11 +6471,11 @@ *Michael SchroederCommits: 1Joined: 2019-02-25 + + *Sainal ShahCommits: 1Joined: 2019-03-10 - - *Wenzhe PeiCommits: 1Joined: 2019-03-11 @@ -6353,11 +6485,11 @@ *kushagrakasliwal1Commits: 1Joined: 2019-03-18 + + *Greg VeldmanCommits: 1Joined: 2019-03-24 - - *Gagandeep SinghCommits: 1Joined: 2019-04-01 @@ -6367,11 +6499,11 @@ *RegisCommits: 1Joined: 2019-04-09 + + *Milutin SmiljanicCommits: 1Joined: 2019-04-19 - - *Andrew HyattCommits: 1Joined: 2019-05-02 @@ -6381,11 +6513,11 @@ *Jens CarlCommits: 1Joined: 2019-05-27 + + *Jay BinghamCommits: 1Joined: 2019-06-03 - - *Jim MacArthurCommits: 1Joined: 2019-06-11 @@ -6395,11 +6527,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 @@ -6409,11 +6541,11 @@ *Tim BartlettCommits: 1Joined: 2019-08-19 + + *Nicolas FellaCommits: 1Joined: 2019-09-01 - - *Dennis SchriddeCommits: 1Joined: 2019-10-04 @@ -6423,11 +6555,11 @@ *Rasmus ThomsenCommits: 1Joined: 2019-10-26 + + *Martin MilataCommits: 1Joined: 2019-12-04 - - *shashikdmCommits: 1Joined: 2019-12-08 @@ -6437,11 +6569,11 @@ *Sıla GençCommits: 1Joined: 2019-12-20 + + *ertoCommits: 1Joined: 2019-12-20 - - *Andrés MaldonadoCommits: 1Joined: 2019-12-26 @@ -6451,11 +6583,11 @@ *Elzem AtayCommits: 1Joined: 2020-01-04 + + *Louis MeyratCommits: 1Joined: 2020-01-12 - - *Cumali ToprakCommits: 1Joined: 2020-01-27 @@ -6465,11 +6597,11 @@ *Emiliano VavassoriCommits: 1Joined: 2020-02-04 + + *praneshulleriCommits: 1Joined: 2020-02-11 - - *Kris van der MerweCommits: 1Joined: 2020-02-16 @@ -6479,11 +6611,11 @@ *Sarabjot SinghCommits: 1Joined: 2020-02-28 + + *Fred KruseCommits: 1Joined: 2020-03-02 - - *Matteo CasalinCommits: 1Joined: 2020-03-04 @@ -6493,11 +6625,11 @@ *So YanaiharaCommits: 1Joined: 2020-03-21 + + *Harshit JainCommits: 1Joined: 2020-03-23 - - *Wyatt TurnerCommits: 1Joined: 2020-03-26 @@ -6507,11 +6639,11 @@ *Alexander VolkovCommits: 1Joined: 2020-04-09 + + *Coming___soONCommits: 1Joined: 2020-04-09 - - *Pavel KlevakinCommits: 1Joined: 2020-04-17 @@ -6521,11 +6653,11 @@ *Martin WhitakerCommits: 1Joined: 2020-05-08 + + *vgeofCommits: 1Joined: 2020-05-09 - - *Igor PoboikoCommits: 1Joined: 2020-05-22 @@ -6535,11 +6667,11 @@ *Ilia SheshukovCommits: 1Joined: 2020-06-04 + + *zdposterCommits: 1Joined: 2020-06-10 - - *Yakov ReztsovCommits: 1Joined: 2020-06-15 @@ -6549,11 +6681,11 @@ *Shiro KawaiCommits: 1Joined: 2020-06-26 + + *Baurzhan MuftakhidinovCommits: 1Joined: 2020-07-12 - - *Octavio AlvarezCommits: 1Joined: 2020-07-16 @@ -6563,11 +6695,11 @@ *ramtk6726Commits: 1Joined: 2020-08-16 + + *OctopusETCommits: 1Joined: 2020-08-17 - - *HochwasserCommits: 1Joined: 2020-09-17 @@ -6577,11 +6709,11 @@ *Travis StewartCommits: 1Joined: 2020-10-01 + + *Bryan GazaliCommits: 1Joined: 2020-10-03 - - *NikhilCommits: 1Joined: 2020-10-04 @@ -6591,11 +6723,11 @@ *Platon PronkoCommits: 1Joined: 2020-10-19 + + *gerritCommits: 1Joined: 2020-10-19 - - *Betül İnceCommits: 1Joined: 2020-10-22 @@ -6605,11 +6737,11 @@ *Jeff LawCommits: 1Joined: 2020-11-03 + + *TRaXInCommits: 1Joined: 2020-11-10 - - *ArdaCommits: 1Joined: 2020-11-21 @@ -6619,11 +6751,11 @@ *Henrik KarlssonCommits: 1Joined: 2020-11-26 + + *ganeshdevareCommits: 1Joined: 2020-11-29 - - *Edward LynchCommits: 1Joined: 2020-11-29 @@ -6633,11 +6765,11 @@ *gar SoulCommits: 1Joined: 2020-12-08 + + *cseguraCommits: 1Joined: 2021-01-03 - - *Quentin PAGÈSCommits: 1Joined: 2021-01-06 @@ -6647,11 +6779,11 @@ *anirudhSCommits: 1Joined: 2021-01-10 + + *Antje KazimiersCommits: 1Joined: 2021-01-30 - - *Linus HeckemannCommits: 1Joined: 2021-02-07 @@ -6661,11 +6793,11 @@ *Quentin DELAGECommits: 1Joined: 2021-02-18 + + *Victor KukshievCommits: 1Joined: 2021-02-18 - - *heet-2312Commits: 1Joined: 2021-03-01 @@ -6675,11 +6807,11 @@ *ViswaasLPCommits: 1Joined: 2021-03-12 + + *Mani KumarCommits: 1Joined: 2021-03-17 - - *arpit1912Commits: 1Joined: 2021-03-19 @@ -6689,11 +6821,11 @@ *Mehmet Sait GülmezCommits: 1Joined: 2021-03-22 + + *bykiviCommits: 1Joined: 2021-03-23 - - *Aritz ErkiagaCommits: 1Joined: 2021-03-25 @@ -6703,11 +6835,11 @@ *David BlatterCommits: 1Joined: 2021-03-31 + + *Felipe LemaCommits: 1Joined: 2021-04-01 - - *Oleksii MakhotinCommits: 1Joined: 2021-04-06 @@ -6717,11 +6849,11 @@ *Carmen Bianca BakkerCommits: 1Joined: 2021-04-11 + + *Steve FanningCommits: 1Joined: 2021-04-11 - - *Joshua WilliamsCommits: 1Joined: 2021-05-22 @@ -6731,11 +6863,11 @@ *Uwe AuerCommits: 1Joined: 2021-07-12 + + *YakovlevAlCommits: 1Joined: 2021-07-15 - - *Aleś BułojčykCommits: 1Joined: 2021-09-27 @@ -6745,11 +6877,11 @@ *mwarnerCommits: 1Joined: 2021-11-25 + + *TheRock BuilderCommits: 1Joined: 2021-12-03 - - *Urja RannikkoCommits: 1Joined: 2021-12-05 @@ -6759,11 +6891,11 @@ *altCommits: 1Joined: 2022-01-04 + + *ArjunCommits: 1Joined: 2022-01-23 - - *Rash419Commits: 1Joined: 2022-01-24 @@ -6773,11 +6905,11 @@ *javierde22Commits: 1Joined: 2022-01-30 + + *jwtiyar narimanCommits: 1Joined: 2022-02-14 - - *NickWingateCommits: 1Joined: 2022-02-23 @@ -6787,11 +6919,11 @@ *Łukasz LeszkoCommits: 1Joined: 2022-03-17 + + *Lemures LemniscatiCommits: 1Joined: 2022-03-17 - - *Sarrah BastawalaCommits: 1Joined: 2022-03-21 @@ -6801,11 +6933,11 @@ *mostafa-elsharnobyCommits: 1Joined: 2022-03-28 + + *Behrad KhorramCommits: 1Joined: 2022-04-03 - - *Shady MohamedCommits: 1Joined: 2022-04-11 @@ -6815,11 +6947,11 @@ *hasban12138Commits: 1Joined: 2022-04-28 + + *Daniel Kamil KozarCommits: 1Joined: 2022-05-03 - - *Dietrich SchultenCommits: 1Joined: 2022-06-11 @@ -6827,65 +6959,78 @@ *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 - *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 - - *Ali_AbdollahianCommits: 1Joined: 2022-07-10 *Arman RezaeiCommits: 1Joined: 2022-07-11 + + *wjh-laCommits: 1Joined: 2022-07-27 *Thierry EmeryCommits: 1Joined: 2022-08-08 - - *Niko FinkCommits: 1Joined: 2022-08-09 *cutamarCommits: 1Joined: 2022-08-28 - + + + + *Sam JamesCommits: 1Joined: 2022-09-02 + + + *Aleksa SavicCommits: 1Joined: 2022-09-02 + + + *Aron FischerCommits: 1Joined: 2022-09-23 + + + *Nalini Prasad DashCommits: 1Joined: 2022-10-04 + + + + + *Martin SchumannCommits: 1Joined: 2022-10-10 + + + *Emmanuel PeterCommits: 1Joined: 2022-10-13 + + + *Hemant Kumar SinghCommits: 1Joined: 2022-10-18 + + - Contributors to bundled templates @@ -6896,7 +7041,7 @@ - *Laurent BPCommits: 49Joined: 2015-11-19 + *Laurent BPCommits: 60Joined: 2015-11-19 *andreas kainzCommits: 23Joined: 2020-04-18 @@ -7506,17 +7651,17 @@ 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 + 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 - b) contributors to the OOo code base should also be credited for the excellent work they do. + b) contributors to the OOo code base should also be credited for the excellent work they do. 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 - 2770 individuals contributed: + 2778 individuals contributed: @@ -7524,35 +7669,35 @@ - Hrbrgr (46591) + Hrbrgr (49803) - Beluga (32612) + Beluga (33076) - Marric (27211) + Marric (27219) - Raal (19600) + Raal (19680) - SteenRønnow (19115) + SteenRønnow (19458) - Manuelf (13775) + Manuelf (14888) - HanV (12529) + Akurery (13155) - Akurery (12392) + HanV (13026) - Bantoniof (11061) + Bantoniof (11195) Pierre-yves samyn (10099) @@ -7561,21 +7706,21 @@ K-j (9376) - Roczek, Dennis (8272) + Penny (8374) - Jayme Barrientos, Adolfo (8017) + Roczek, Dennis (8272) - Penny (7857) + Jayme Barrientos, Adolfo (8204) - Filmsi (7282) + Filmsi (7310) - Stevefanning (6630) + Stevefanning (6880) @@ -7583,7 +7728,7 @@ Goncharuk, Lera (5436) - Gautier, Sophie (5346) + Gautier, Sophie (5363) Nogata Jun (5238) @@ -7594,20 +7739,23 @@ - Uroveits (4543) + Uroveits (4547) - Yaron (4222) + Yaron (4232) - Kompilainenn (4116) + Martin187 (4187) - Tagezibot (3924) + Kompilainenn (4169) + Tagezibot (3924) + + Tryon, Robinson (3712) @@ -7616,12 +7764,12 @@ Balland-Poirier, Laurent (3512) - - Martin187 (3470) - + Kevin, Suo (锁琨珑) (3375) + + Rizmut (3193) @@ -7630,16 +7778,13 @@ Hibagonsan (3073) - - Prcek (2866) - - Kevin, Suo (锁琨珑) (2854) + Prcek (2871) - Noorikhah, Hossein (2731) + Noorikhah, Hossein (2732) LibreOfficiant (2530) @@ -7653,38 +7798,38 @@ Ronnie rg8888 (2352) - Hallot, Olivier (2280) + Hallot, Olivier (2330) Bielefeld, Rainer (2077) - X1sc0 (1794) + X1sc0 (1810) - Effenberger, Florian (1752) + Diegoperesmarques (1794) - LobaLuna (1674) + Effenberger, Florian (1752) - Diegoperesmarques (1555) + LobaLuna (1692) - Michaelsen, Björn (1554) + Enoki (1565) - Lyzbet (1552) + Michaelsen, Björn (1554) - Iva Ot (1545) + Lyzbet (1552) - Enoki (1534) + Iva Ot (1545) Kolarkater (1418) @@ -7762,16 +7907,16 @@ - Tietze, Heiko (814) + Sanz Cabrero, Juan Carlos (825) - H-k (804) + Tietze, Heiko (818) - Sanz Cabrero, Juan Carlos (794) + H-k (804) - Henschel, Regina (784) + Henschel, Regina (786) @@ -7779,10 +7924,10 @@ Drew (748) - Teo91 (733) + Behrens, Thorsten (735) - Behrens, Thorsten (733) + Teo91 (733) Jmpierre (727) @@ -7790,30 +7935,30 @@ - Iversen, Jan (693) + Mike.saunders (695) - Mike.saunders (692) + Iversen, Jan (693) RobertG (684) - Floris v (660) + AAAA (670) - Rathke, Eike (658) + Rathke, Eike (664) - Kees538 (654) + Floris v (660) - AAAA (649) + Kees538 (654) - Vajna, Miklos (646) + Vajna, Miklos (648) @@ -7838,10 +7983,10 @@ Lohmaier, Christian (559) - Sam m (553) + Elmau (554) - Elmau (550) + Sam m (554) @@ -7852,7 +7997,7 @@ Paulo (546) - JO3EMC (530) + JO3EMC (537) Knorr, Stefan (521) @@ -7866,7 +8011,7 @@ Elianedomingos (508) - Foote, V Stuart (500) + Foote, V Stuart (503) Reisinger, Florian (491) @@ -7880,7 +8025,7 @@ Jana.urbanova (478) - Stahl, Michael (472) + Stahl, Michael (473) Veracape (472) @@ -7916,7 +8061,7 @@ - Kaganski, Mike (412) + Kaganski, Mike (417) Luz Coelho, Rogério (409) @@ -7967,11 +8112,14 @@ Herissongrognon (378) - LenkaD (377) + Hellotheworld (377) + LenkaD (377) + + Emanuel Marcatinco (374) @@ -7980,11 +8128,11 @@ Thackert (359) + + Kara, Muhammet (347) - - Mayan Tigger (347) @@ -7994,11 +8142,11 @@ Vpanter (333) + + Pruegsanusak, Korrawit (330) - - Drodriguez (329) @@ -8006,58 +8154,66 @@ Volkerme (329) + Timotheonb (327) + + + + Wget (323) Arranna (322) - - - Kosiorek, Bartosz (309) + Kosiorek, Bartosz (310) Donaldo (305) + + Khanson679 (305) Tseng, Cheng-Chia (294) - - Heinzws (292) Librelegal (292) + + Lillqvist, Tor (292) Emanuel A. Marcatinco B. (290) - - Dhsung (287) + Cheche (280) + + + + HARA (279) Kitaygrad (278) - Cheche (277) + Bergmann, Stephan (272) - - - Bergmann, Stephan (270) + Ansiklopedici (269) + + Epix (268) @@ -8067,11 +8223,12 @@ Kaplan, Lior (267) - - Lodahl (264) + + + Dayeong (263) @@ -8079,83 +8236,83 @@ Twistios (259) - Ansiklopedici (256) - - - - Remarques (252) Deemonizer (248) + + Adrianoafonso (246) Loic (240) - - EricBright (238) Steve (237) + + Vignoli, Italo (235) Maintenance script (235) - - Hogue (233) Mesho (233) + + Bosdonnat, Cédric (231) Bedipp (226) - - Jeanmi2403 (225) Kerwyn (221) + + Jbfaure (220) Almusaireae (219) - - Kkwet38 (218) Gilvanvilarim (217) + + Libo02 (217) Khirano (215) - - + + Mars (211) + YALÇINSOY, Ayhan (209) + + ZuzuN (208) @@ -8165,145 +8322,147 @@ Daveb (207) - - - - Mars (206) - Ithaldenni20 (203) + + XsLiDian (203) Latini, Marina (202) - - Steinzeit (200) Wheatbix (198) + + Erhardt (193) Schulz, Charles-H. (191) - - - DmitryBowie (188) Franklin (188) + + - Tarnhold (187) + Nemeth (188) - Mazerunner (185) + Tarnhold (187) - - - Nemeth (184) + Mazerunner (185) Naniud (183) + + Méixome, Antón (179) Alkurtass, Issa (178) - - Sw0000j (176) Raw text (175) + + Madl, Tobias (175) Fridrich (172) - - Luizheli (172) N.yadi (171) + + Furusho (170) Pitkänen, Harri (169) - - Jiang, Yifan (168) Óvári (165) + + Matuaki (163) Ckhe1215 (162) - - See (160) Snelders, Rob (159) + + Ponzo, Gabriele (159) Hagar Delest (159) - - Xystina (154) Uminakabkbk (153) + + Pietro (150) Slacka (150) - - Herzog, Christoph (149) Chris-hoh (147) + + + + Valtermura (147) + Back69 (146) + Mamane, Lionel Elie (146) + + Det (145) @@ -8315,7 +8474,7 @@ Mipmap (144) - Mamane, Lionel Elie (141) + Teseu (144) Michelr (141) @@ -8357,16 +8516,13 @@ Pepeleduin (137) - Hellotheworld (135) - - Norah (135) - - Shunesburg69 (135) + + Guilhem (134) @@ -8376,50 +8532,56 @@ Llunak (132) + + Tjhietala (132) + + Davydych (131) + + Richteruwe (131) Michel, Mathias (129) + Goodlinuxuser (127) + + + + Ikuya (127) Ki Drupadi (127) - - Nik (127) Baffclan (126) + + Kukekko (126) Nabet, Julien (125) - - RGB.ES (124) - Valtermura (124) - - JARF (123) + + Krackedpress (123) - - Psluk (123) @@ -8427,9 +8589,6 @@ Trapezus (122) - Goodlinuxuser (120) - - JohnSmith (120) @@ -8449,526 +8608,523 @@ - Tjhietala (115) - - Ysabeau (115) Markers (114) - Teseu (114) - - - - Massimo.zaffaina (113) PulkitKrishna00 (113) + + Vohe (113) Marcus Gama (112) - - Dougvigliazzi (111) Medieval (111) + + Bachka (110) Monthoflibreoffice bot (110) - - Mantke, Andreas (109) - Jstnlth (108) + Jstnlth (109) + + Nyucel (108) Salix (107) - - Chtfn (106) - Stephan.ficht (105) + Stephan.ficht (106) + + Bitsfritz (104) Klaibson (104) - - MDDN (104) Mbalabanov (104) + + - Timur LOL (102) + Timur LOL (103) Pechlaner, Wolfgang (102) - - JZA (101) WillZ (100) + + Android272 (99) JeHa (99) - - AlanC (98) Dan (95) + + Vpinheiro (95) Köse, Gülşah (94) - - Barbora (93) Geraldg (93) + + MagicFab (93) Andreasg (92) - - Lekle (91) Atalanttore (90) + + Frombenny (90) Richv2 (90) - - Zeki (89) Catalin Festila (88) + + Hertel, Jesper (88) Fišeras, Aurimas (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) - - Ocleyr2lalune (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) Quikee (66) - - 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) Thibault, Samuel (62) - - Denco (61) Frieder (61) + + Jimin (61) Arnaudlecam (60) - - Jlgrenar (60) Montané, Joan (60) + + OctopusET (60) Piotrekr1 (60) - - Kelemeng (59) AndikaTriwidada (58) + + Camillem (58) Neel, Daniel (58) - - Loflex (58) Kukan, Matúš (58) + + Jihui choi (57) Bubli (56) - - Davefilms (56) Glen.reesor (56) + + Ramones (56) Ramtk6726 (56) - - Hunt, Andrzej (55) Fifh (55) + + + + Grandin, Noel (55) + Jrahemipour (55) Cornell, Clayton (54) - - Fanthomas (54) - - Grandin, Noel (54) - + + Mahfiaz (54) Heben2 (53) - - Sunny2038 (53) Petrizzo (52) + + ArnoldSchiller (51) Helmar (51) - - Jaani (51) Lendo (51) + + Agd (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) + + + + Jhannine20 (47) + Quest-88 (47) Buj Gelonch, Robert Antoni (47) - - Amtliz (46) + + FloF (46) @@ -8978,11 +9134,11 @@ Sveinki (46) - - Bfo (45) + + Hosny, Khaled (45) @@ -8992,11 +9148,11 @@ Jung, Philippe (45) - - Robwestein (45) + + Bhorst (44) @@ -9006,11 +9162,11 @@ Aaronxu (43) - - Cottage14 (43) + + Gareth (43) @@ -9020,11 +9176,11 @@ Wilper, Simon (43) - - Enger, Terrence (43) + + Donkers, Winfried (43) @@ -9034,10 +9190,13 @@ Fkara (42) + + KAMI (42) + - KAMI (42) + Northwoods35 (42) SangwooPark (42) @@ -9074,11 +9233,14 @@ Valdirbarbosa (39) - Enervation (38) + Budea, Áron (38) + Enervation (38) + + Partick.auclair (38) @@ -9087,9 +9249,6 @@ Alex Thurgood (37) - - Budea, Áron (37) - @@ -9116,11 +9275,14 @@ Castle, John LeMoyne (37) - RaducuG (37) + Pavel1513 (37) + RaducuG (37) + + Sistemo2021 (37) @@ -9129,11 +9291,11 @@ Caco13 (36) + + Danishka (36) - - Weghorn, Michael (36) @@ -9143,11 +9305,11 @@ Sci citation (36) + + Yan Pashkovsky (36) - - Andreas ka (35) @@ -9157,11 +9319,11 @@ Liongold (35) + + Nora (35) - - Pingping111 (35) @@ -9171,11 +9333,11 @@ Subramanian, Muthu (35) + + Alg (34) - - Skagh1750 (34) @@ -9185,11 +9347,11 @@ Davidlamhauge (33) + + Corrius, Jesús (33) - - Lmartinezh (33) @@ -9199,54 +9361,54 @@ Mateus.m.luna (33) + + Pereriksson (33) - - + + Ptoye (33) + Rafi (33) Shirahara (33) + + Alexanderwerner (32) Arnaud versini (32) - - Clio (32) Daud (32) + + Kłos, Szymon (32) Lenochod (32) - - Marinello, Marco (32) Dryomov, Artur (32) + + Monocat (32) - Ptoye (32) - - - - Vulcain (32) @@ -9255,11 +9417,11 @@ Chloeeekim (31) + + H (31) - - IvanM (31) @@ -9269,84 +9431,92 @@ Usayan (31) + + Am97 (30) - - Justman10000 (30) + Maose (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) - - PaoloPelloni (28) المسيكين (28) + + + + Ledure, Jean-Pierre (27) + Marcofilippozzi (27) Marcos Paulo de Souza (27) - - Micm (27) + + PeppinoLib (27) @@ -9356,11 +9526,11 @@ Thuswaldner, Albert (27) - - Alayaran (26) + + Eresus (26) @@ -9370,123 +9540,123 @@ Fanch (26) - - - - Ledure, Jean-Pierre (26) - Librek (26) + + Libreofficer (26) Linuxman (26) - - Lutch (26) Myunghoonju (26) + + Hawkins, Nigel (26) Pirat Michi (26) - - Vaslav (26) Aidsoid (25) + + Ailion (25) Roßmanith, Christina (25) - - Freddyrh (25) Sullivan, Gatlin (25) + + Lboccia (25) Linux 9x (25) - - Manuel De Franceschi (25) Noelson (25) + + Onur.bingo (25) Freund, Matthias (25) - - Schröder, Sophia (25) Winniemiel05 (25) + + Magee, Timothy (24) Elpapki (24) - - Gaianer (24) Gérard24 (24) + + Ksoviero (24) Nik vr (24) - - Olivier (24) Elsass68490 (23) + + Hamurcu (23) + Jeppebundsgaard (23) + + Lostinthiswhirlpool (23) - - Olorin (23) + + Skip-on (23) @@ -9496,11 +9666,11 @@ Team One (23) - - Thumperward (23) + + Tommy27 (23) @@ -9510,11 +9680,11 @@ Webmink (23) - - Youngman, Anthony W. (23) + + Aphaia (22) @@ -9524,11 +9694,11 @@ Bjoern (22) - - HenryGR (22) + + JChimene (22) @@ -9538,736 +9708,728 @@ Flywire (21) - - - - Jeppebundsgaard (21) - Johannes (21) + + Keymap19 (21) Liusiqi43 (21) - - Logisch dede (21) Necdetyucel (21) + + Puster (21) Shiko (21) - - WalterPape (21) Wayra (21) + + Bugmenot (20) Dennisfrancis (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) Jstaerk (18) + + Monastirsky, Maxim (18) Narayan (18) - - Nestifea61 (18) Power, Noel (18) + + Richard (18) Serge Krot (18) - - Sooth (18) UriHerrera (18) + + Vuhung (18) Yusufketen (18) - - 林漢昌 (18) Akerbeltz (17) + + Chd (17) Craigo (17) - - Dlmoretz (17) Ertsey, Andor (17) + + Guilherme.vanz (17) Gulmorais (17) - - Tõnnov, Mihkel (17) Rubembarreto (17) + + Sohyun99 (17) Taken (17) - - Zu, Ximeng (17) Yumakino (17) + + Беломир (17) Airon90 (16) - - Alexpikptz (16) Dhersh (16) + + Kingu (16) Pinto, Marco A.G. (16) - - MoIshihara (16) Oweng (16) + + P.Guimberteau (16) PauGNU (16) - - Ristoi (16) Smarquespt (16) + + Smrabelo (16) TPJ (16) - - APerson (15) Akki95 (15) + + Andy98 (15) Bertob (15) - - Gilward Kukel (15) Irmhild (15) + + Khlood Elsayed (15) Lefevre00 (15) - - Luctur (15) Miko (15) + + Naudy (15) Dominguez, Rafael (15) - - Patriciasc (15) Rafaelff (15) + + Raniaamina (15) Raul.malea (15) - - Royerjy (15) Syntaxerrormmm (15) + + Thorogood, Tom (15) Ulf hamburg (15) - - Yecril21pl (15) 暗影遺言 (15) + + Adsoncristian (14) AliIsingor (14) - - Darkcircle (14) Elrath (14) + + Fina (14) Francis59 (14) - - Guuml (14) Halencarjunior (14) + + Lfernandocarvalho (14) Librosaurus (14) - - Dixon, Luke (14) Mderoucy (14) + + Rania (14) Reinsle (14) - - RiderExMachina (14) Susobhang70 (14) + + Svante (14) Tamiliam (14) - - Testnoda (14) Thangamani-arun (14) + + Yoshi (14) Akoscomp (13) - - Alrt84 (13) Alyssonware (13) + + Beuss (13) Cedric31 (13) - - Crolidge (13) Gallaecio (13) + + Jobo (13) Kadekilo (13) - - Leomota (13) Ljelly (13) + + Luc (13) Mabbb (13) - - Mikeyy (13) Mortense (13) + + Odd123 (13) Pete Boyd (13) - - S.Gecko (13) Samtuke (13) + + Sanyii (13) Simplicity Instinct (13) - - ThierryM (13) Tnishiki (13) + + Tusharrai2017 (13) Vivaelcelta (13) - - Vkkodali (13) A8 (12) + + Alfabech (12) And471 (12) - - AustinW (12) Bhaskar (12) + + Brett (12) Cepiloth (12) - - Chris2020 (12) Cralin (12) + + Debring (12) Al-Otaibi, Faisal M. (12) - - Halan (12) Immanuelg (12) + + Kikopb (12) Krabina (12) - - Šebetić, Krunoslav (12) Godard, Laurent (12) + + Rimkus, Modestas (12) Nandar (12) - - Pcapeluto (12) Gupta, Rachit (12) + + Raruenrom, Samphan (12) Möller, Sören — spelled Soeren Moeller in some patches (12) - - Staticsafe (12) Melenchuk, Vasily (12) + + Veerh01 (12) 翼之靈歌 (12) - - Bryanquigley (11) Cdan (11) + + ChristopheS (11) Dajare (11) - - Ebraminio (11) Eduaraujo (11) + + Gokul, S (11) Janus (11) - - Johnny M (11) Kallecarl (11) + + Kolbjoern (11) Leatherbottle (11) - - Luiz Henrique Natalino (11) MNeto (11) + + Pearson, Timothy (11) Marco c (11) - - Marcuskgosi (11) NON (11) + + Johansson, Niklas (11) Nuernbergerj (11) - - Rogeniobelem (11) Salmaan (11) + + Sunk8 (11) Gomez, Andres (11) - - Vrlivre (11) Zero0w (11) + + Aeusebio (10) Algotruneman (10) - - Castagno, Giuseppe (10) Blargh (10) - - Davydych (10) - + + Diginin (10) - - Eagles051387 (10) @@ -10277,11 +10439,11 @@ Eficheux (10) + + El7r (10) - - J.baer (10) @@ -10291,11 +10453,11 @@ Joacim (10) + + Kadertarlan (10) - - Kirill NN (10) @@ -10305,11 +10467,11 @@ Lionlinux (10) + + Mesutcfc (10) - - Chung, Elton (10) @@ -10319,11 +10481,11 @@ Morvan (10) + + Mpumrlova (10) - - Nateyee (10) @@ -10333,11 +10495,11 @@ Otto (10) + + Paour (10) - - Rafaelhlima (10) @@ -10347,11 +10509,11 @@ Ronja (10) + + Tatat (10) - - Tomg (10) @@ -10361,11 +10523,11 @@ Twstdude0to1 (10) + + User8192 (10) - - Wlenon (10) @@ -10375,11 +10537,11 @@ Agger (9) + + Aicra (9) - - Brandner, Andreas (9) @@ -10389,11 +10551,11 @@ Camargo (9) + + Cnuss (9) - - Compressor nickel (9) @@ -10403,11 +10565,11 @@ Dupreyb (9) + + Fatdf (9) - - Gibi (9) @@ -10417,11 +10579,11 @@ Goranrakic (9) + + Jim-BobHarris (9) - - Jonatoni (9) @@ -10431,11 +10593,11 @@ Jowyta (9) + + Kscanne (9) - - Lapetec (9) @@ -10445,11 +10607,11 @@ Mapper (9) + + Marco (9) - - Meo (9) @@ -10459,11 +10621,11 @@ Msaffron (9) + + Ohnemax (9) - - Onting (9) @@ -10473,11 +10635,11 @@ Milvaques, Pasqual (9) + + Foley, Peter (9) - - Pixpray (9) @@ -10487,11 +10649,11 @@ Rantaro (9) + + Rogawa (9) - - Rpr (9) @@ -10501,11 +10663,11 @@ Spacebat (9) + + Spyros (9) - - Therabi (9) @@ -10515,11 +10677,11 @@ Tamás, Bunth (9) + + Zhangxiaofei (9) - - ميدو (9) @@ -10529,11 +10691,11 @@ Andrea Gelmini (8) + + AndreasL (8) - - Ausserirdischegesund (8) @@ -10543,11 +10705,11 @@ Cusiri (8) + + Dashohoxha (8) - - DrDub (8) @@ -10557,11 +10719,11 @@ Elacheche (8) + + Horst (8) - - Israel Chaves (8) @@ -10571,11 +10733,11 @@ Jiero (8) + + Jrsiqueira (8) - - Jslozier (8) @@ -10585,11 +10747,11 @@ Dywan, Christian (8) + + Kednar (8) - - Rietveld, Kristian (8) @@ -10599,11 +10761,11 @@ Leigh, Jack (8) + + Leo.h.hildebrandt (8) - - Luisgulo (8) @@ -10613,11 +10775,11 @@ Mrmox2 (8) + + NightMonkey (8) - - NirajanPant (8) @@ -10627,11 +10789,11 @@ PaoloVecchi (8) + + Paulo.tavares (8) - - Peterpall (8) @@ -10641,11 +10803,11 @@ Thejack (8) + + Tibbylickle (8) - - Troumad (8) @@ -10655,11 +10817,11 @@ VlhOwn (8) + + Yakusha (8) - - Yellow.h (8) @@ -10669,11 +10831,11 @@ Kabatsayev, Ruslan (7) + + Ahiijny (7) - - Andrea.soragna (7) @@ -10683,11 +10845,11 @@ Belkacem77 (7) + + Berrykevin (7) - - Bjherbison (7) @@ -10697,11 +10859,11 @@ Borim7 (7) + + Capiscuas (7) - - Chin Zee Yuen (7) @@ -10711,11 +10873,11 @@ Dado (7) + + Drose (7) - - Esbardu (7) @@ -10725,11 +10887,11 @@ GuKK-Devel (7) + + Hunter, Kevin (7) - - Ingotian (7) @@ -10739,11 +10901,11 @@ Lonelyhiker (7) + + M1cky (7) - - Mariosv (7) @@ -10753,11 +10915,11 @@ MephistoBooks (7) + + Francis, Matthew (7) - - Nathanjh13 (7) @@ -10767,11 +10929,11 @@ Nemo bis (7) + + Christener, Nicolas (7) - - Olivier DDB (7) @@ -10781,11 +10943,11 @@ PeaceByJesus (7) + + Polte (7) - - RMCampos (7) @@ -10795,11 +10957,11 @@ Raykowj (7) + + Rodo (7) - - Scottclarke (7) @@ -10809,11 +10971,11 @@ Shaunrobot (7) + + Simosx (7) - - Tonnysmile (7) @@ -10823,11 +10985,11 @@ Wabuo (7) + + Webfork (7) - - Woordje (7) @@ -10837,11 +10999,11 @@ Alexandrorodrigez (6) + + Alpha (6) - - Armin Dänzer (6) @@ -10851,11 +11013,11 @@ Higginson, Andrew (6) + + Barend (6) - - Bobe (6) @@ -10865,319 +11027,319 @@ Cagatayyigit (6) + + + + CassieLX (6) + Cccfr (6) - - ClausKofoed (6) Coypu (6) + + Dag (6) BEN MANSOUR, Mohamed-Ali (6) - - Ddxavier (6) Dfriedman (6) + + DotnetCarpenter (6) Mencken, Douglas (6) - - Dr.Faust (6) DrRobotto (6) + + Druzhshchienschkyj (6) Edmond ciorba (6) - - Edmund.laugasson (6) Equis (6) + + FPhoenix (6) Fdekruijf (6) - - Gallaire, Florent (6) Fisiu (6) + + Florian heckl (6) Gerritg (6) - - Ghune (6) Googly Googly (6) + + HdV (6) Hmoi (6) - - Hramrach (6) Infoprof (6) + + Iplaw67 (6) Timofeev, Ivan (6) - - James 00cat (6) Jeffersonx (6) + + Kawichi (6) Levlazinskiy (6) - - Link Mauve (6) MaggieT (6) + + Mahdyar (6) Manas (6) - - Manop (6) Mas (6) + + Mgommel (6) Mhonline (6) - - Mmetz (6) Ndlsas (6) + + Öttl, Gerhard (6) Only you (6) - - Os cib (6) PLNET (6) + + Pescetti (6) Peter Chastain (6) - - Peterhuang1kimo (6) Piotr285 (6) + + Puggan (6) Rotaj (6) - - Goyal, Shubham (6) Sn!py (6) + + Sukit (6) Sumitcn (6) - - Telesto (6) Heidenreich, Josh (6) + + Thorwil (6) TiagoSantos (6) - - Tyree (6) VACHER (6) + + Vgezer (6) Virthus (6) - - Wagner Augusto Silva Rodrigo (6) Wasserthal (6) + + Wigglejimmy (6) Wiseacre (6) - - Xhi2018 (6) Xiaoyu2006 (6) + + 3blz (5) Adam Co (5) - - Albucasis (5) AleXanDeR G (5) + + Alfalb (5) Alvarez, Octavio (5) - - Anousak (5) Liwen, Fan (5) + + Art.Gilvanov (5) Sodora, August (5) - - AustinSaintAubin (5) Baumgarp (5) + + BillRVA (5) Bitigchi (5) - - BloodIce (5) - CassieLX (5) - - Cono (5) + + Cray85 (5) - - Dejourdain (5) @@ -11187,11 +11349,11 @@ Dmtrs32 (5) + + DoFoWerner (5) - - Faiq Aminuddin (5) @@ -11201,11 +11363,11 @@ Florian.haftmann (5) + + Francewhoa (5) - - GaboXandre (5) @@ -11215,11 +11377,11 @@ Gpoussel (5) + + H.Sparks (5) - - Habib (5) @@ -11229,11 +11391,11 @@ HubPfalz (5) + + Hummer5354 (5) - - HwangTW (5) @@ -11243,11 +11405,11 @@ Jambdev (5) + + Jaysponsored (5) - - JoeP (5) @@ -11257,11 +11419,11 @@ KadlecOn (5) + + Kamataki (5) - - Klausmach (5) @@ -11271,11 +11433,11 @@ LibreOfficeUser1 (5) + + Mak (5) - - Mgaster (5) @@ -11285,11 +11447,11 @@ Laplante, Chris (5) + + Mtg (5) - - Mtnyildrm (5) @@ -11299,11 +11461,11 @@ OSVALDO LINS VIANA (5) + + Orcmid (5) - - Pepe (5) @@ -11313,11 +11475,11 @@ Poeml (5) + + Quwex (5) - - Radish (5) @@ -11327,11 +11489,11 @@ Raknor (5) + + Raulpaes (5) - - Rautamiekka (5) @@ -11341,11 +11503,11 @@ Rhoslyn (5) + + Rogerio DA (5) - - Rsolipa (5) @@ -11355,11 +11517,11 @@ Salavine1 (5) + + Samson (5) - - Chvátal, Tomáš (5) @@ -11369,11 +11531,11 @@ Sergej (5) + + Shantanuo (5) - - Shivam (5) @@ -11383,26 +11545,26 @@ So solid moo (5) - - Srividya (5) - - Starseeker (5) + Srividya (5) - Taylorh140 (5) + Sswales (5) - Terentev.mn (5) + Starseeker (5) - Timotheonb (5) + Taylorh140 (5) + Terentev.mn (5) + + Tranzistors (5) @@ -11411,11 +11573,11 @@ Wt (5) + + Yury Tarasievich (5) - - AHi (4) @@ -11425,11 +11587,11 @@ Aaronkyle (4) + + Aas (4) - - Adderbox76 (4) @@ -11439,11 +11601,11 @@ Agron (4) + + Albertoeda (4) - - Nureña, Aldo Román (4) @@ -11453,11 +11615,11 @@ Alexstrand7 (4) + + AliKhP (4) - - Alvarenga (4) @@ -11467,11 +11629,11 @@ Amire80 (4) + + Andréb (4) - - Archlid (4) @@ -11481,11 +11643,11 @@ Axel (4) + + Azorpid (4) - - Bardo (4) @@ -11495,11 +11657,11 @@ Widl, Bernhard (4) + + Bigbek (4) - - Blender3dartist (4) @@ -11509,11 +11671,11 @@ Cam AW (4) + + Clairedwood (4) - - ConquerorsHaki (4) @@ -11523,11 +11685,11 @@ Cwendling (4) + + CyrilBeaussier (4) - - Dante (4) @@ -11537,11 +11699,11 @@ Dmerker (4) + + DmitryRamones (4) - - Doubi (4) @@ -11551,11 +11713,11 @@ Robertson, Daniel (4) + + Eisaks (4) - - Erx700 (4) @@ -11565,11 +11727,11 @@ Fmolinero (4) + + Ftigeot (4) - - Garrowolf (4) @@ -11579,11 +11741,11 @@ Gustav (4) + + GwenaelQ (4) - - Hdu (4) @@ -11593,11 +11755,11 @@ JKaufmann (4) + + Jamesleader (4) - - Jessefrgsmith (4) @@ -11607,11 +11769,11 @@ Jjmeric (4) + + Jjpalacios (4) - - JnRouvignac (4) @@ -11621,11 +11783,11 @@ Jones (4) + + Jooste (4) - - Joriki (4) @@ -11635,11 +11797,11 @@ Kemalayhan (4) + + Lethargilistic (4) - - Loren.rogers (4) @@ -11649,11 +11811,11 @@ Haggag, Muhammad (4) + + MPascual (4) - - Rumianowski, Maciej (4) @@ -11663,11 +11825,11 @@ Mikedoherty ca (4) + + Mondeep18 (4) - - Morgan greywolf (4) @@ -11677,11 +11839,11 @@ NGHLibreOffice (4) + + O.villani (4) - - Offidocs (4) @@ -11691,11 +11853,11 @@ Oscar90210 (4) + + Paolopoz (4) - - Paranemertes (4) @@ -11705,11 +11867,11 @@ Pegasus (4) + + Pgassmann (4) - - Philj (4) @@ -11719,11 +11881,11 @@ van Oostrum, Pieter (4) + + Pjacquod (4) - - Prolog.guy (4) @@ -11733,11 +11895,11 @@ Qubit-test (4) + + Randolphgamo (4) - - Rebahozkoc (4) @@ -11747,11 +11909,11 @@ Ricgal (4) + + RjR (4) - - Rodhos (4) @@ -11761,13 +11923,10 @@ Sealview (4) - - Selimseker (4) - - Sswales (4) + Selimseker (4) Stevenmw (4) @@ -11781,6 +11940,9 @@ + Tempelorg (4) + + Thetic (4) @@ -11789,11 +11951,11 @@ Tlequire (4) + + Txwikinger (4) - - Ufas (4) @@ -11803,11 +11965,11 @@ Urhixidur (4) + + Uzadmin (4) - - V., Artem (4) @@ -11817,11 +11979,11 @@ Wikiuser (4) + + Williamjmorenor (4) - - Wpeixoto (4) @@ -11831,11 +11993,11 @@ AbhilashSingh (3) + + Adept (3) - - Aexyn (3) @@ -11845,11 +12007,11 @@ Jain, Atishay (3) + + Alex.simoes (3) - - Alexsfagundes (3) @@ -11859,11 +12021,11 @@ Andrey Usov (3) + + Antanasb (3) - - Ariete (3) @@ -11873,11 +12035,11 @@ Armin (3) + + Armin W. (3) - - Arthur Zennig (3) @@ -11887,11 +12049,11 @@ Baena (3) + + Bellerophon2 (3) - - Benjwgarner (3) @@ -11901,11 +12063,11 @@ Bindassanant (3) + + Bodhi-Baum (3) - - Bootingman (3) @@ -11915,11 +12077,11 @@ Prajapati, Gautam (3) + + Brub (3) - - Burdakov (3) @@ -11929,11 +12091,11 @@ Canberkturan (3) + + Castro (3) - - Charu (3) @@ -11943,11 +12105,11 @@ Claudiosegovia (3) + + Cmorgan (3) - - Colokalle (3) @@ -11957,11 +12119,11 @@ DaSch (3) + + DanShearer (3) - - Beurle, Darcy (3) @@ -11971,11 +12133,11 @@ Dilip (3) + + Donbrookman (3) - - Dubyk (3) @@ -11985,11 +12147,11 @@ Eeha0120 (3) + + Eisa01 (3) - - Elproferoman (3) @@ -11999,11 +12161,11 @@ ErSey (3) + + Eric.ficheux (3) - - Ericatamiris (3) @@ -12013,11 +12175,11 @@ Farukuzun (3) + + Ferlodev (3) - - Fraang (3) @@ -12027,11 +12189,11 @@ Frob tea (3) + + Fulldecent (3) - - FunkyPenguin (3) @@ -12041,11 +12203,11 @@ Gouchi (3) + + Smaha, Guillaume (3) - - Hansgerd.schneider (3) @@ -12055,11 +12217,11 @@ Herrmarder (3) + + Hwpplayer1 (3) - - IanL (3) @@ -12069,11 +12231,11 @@ Imcon (3) + + It-christian (3) - - IvanMM (3) @@ -12083,11 +12245,11 @@ JDM (3) + + Jammon (3) - - Jcrben (3) @@ -12097,11 +12259,11 @@ Jessemoreirao (3) + + Murugan, Jesso Clarence (3) - - Jhbn (3) @@ -12111,11 +12273,11 @@ Joe312213 (3) + + Johannes Rohr (3) - - Joseroberto (3) @@ -12125,11 +12287,11 @@ Julianm (3) + + K Karthikeyan (3) - - Katasisc (3) @@ -12139,11 +12301,11 @@ KeilaAlonso (3) + + Kevinob (3) - - Kfogel (3) @@ -12153,11 +12315,11 @@ Kkrothapalli (3) + + LO Rob (3) - - Lennoazevedo (3) @@ -12167,11 +12329,11 @@ Libcub (3) + + Lpranam (3) - - LucaCappelletti (3) @@ -12181,11 +12343,11 @@ Luuk (3) + + Machey (3) - - Bessières, Marc (3) @@ -12195,11 +12357,11 @@ Marializ (3) + + Matteocam (3) - - Mattias (3) @@ -12209,11 +12371,11 @@ Measure for Measure (3) + + Melike (3) - - Meryemezber (3) @@ -12223,11 +12385,11 @@ Mhsmsantos (3) + + Michaelwheatland (3) - - Mike98 (3) @@ -12237,11 +12399,11 @@ NickWingate (3) + + NicksonT (3) - - Nicolas.abel (3) @@ -12251,11 +12413,11 @@ Ragnarsson, Björgvin (3) + + Nloira (3) - - Noel Power (3) @@ -12265,11 +12427,11 @@ Steinbeiß, Simon (3) + + Ojeremyj (3) - - Oliverguenther (3) @@ -12279,11 +12441,11 @@ Penalvch (3) + + Pr410 (3) - - Prakash72 (3) @@ -12293,11 +12455,11 @@ Rapha.ksf (3) + + Rauloliverpaes (3) - - Bevilacqua, Jean-Sébastien (3) @@ -12307,11 +12469,11 @@ Rick (3) + + Robert.E.A.Harvey (3) - - Rosemary (3) @@ -12321,11 +12483,11 @@ Sander Klootwijk (3) + + Sangeeta (3) - - Saper (3) @@ -12335,11 +12497,11 @@ Sayt (3) + + Schroed(ing)er (3) - - Sebby (3) @@ -12349,11 +12511,11 @@ Shelandy (3) + + Skinnerbird (3) - - Smile4ever (3) @@ -12363,11 +12525,11 @@ Songchuan (3) + + Sotrud nik (3) - - Soued031 (3) @@ -12377,11 +12539,11 @@ SteveKelem (3) + + Strugee (3) - - Suren (3) @@ -12391,11 +12553,11 @@ Taylor46 (3) + + TheWebalyst (3) - - Tiagosilva.anps (3) @@ -12405,11 +12567,11 @@ Tititou36 (3) + + Kumar, Tarun (3) - - Toki (3) @@ -12419,11 +12581,11 @@ ToniB (3) + + Toxifier (3) - - TrnsltLife (3) @@ -12433,11 +12595,11 @@ Ubap (3) + + Kitzinger, Ulrich (3) - - Underdog (3) @@ -12447,11 +12609,11 @@ Vljubovic (3) + + Wagnerluis1982 (3) - - Khoo, Wei Ming (3) @@ -12461,11 +12623,11 @@ Xaker1 (3) + + Yeominstall (3) - - Yukawa (3) @@ -12475,11 +12637,11 @@ Yvon Henel (3) + + Zaria (3) - - Zaxebo1 (3) @@ -12489,11 +12651,11 @@ ترجمان05 (3) + + さかみのかさね (3) - - AbbeyI19jfjc (2) @@ -12503,11 +12665,11 @@ AdrianValdez4 (2) + + Adsha (2) - - Agarciamog (2) @@ -12517,11 +12679,11 @@ Alan (2) + + Ale2017 (2) - - AliceOliver7 (2) @@ -12531,11 +12693,11 @@ Alisha (2) + + AlmedaFrancis (2) - - AlphonsoNava4 (2) @@ -12545,11 +12707,11 @@ AmyCarney5 (2) + + Anasiic (2) - - AndresChandia (2) @@ -12559,11 +12721,11 @@ AndrewKuhn7 (2) + + AndrewUlrich (2) - - Andthebrain (2) @@ -12573,11 +12735,11 @@ Anjar (2) + + Ankit (2) - - AnnabelMcmullen (2) @@ -12587,11 +12749,11 @@ Anonimus (2) + + AntoniaMead8 (2) - - Jain, Anurag (2) @@ -12601,11 +12763,11 @@ ApostlesSheldon (2) + + Arachan (2) - - Asal (2) @@ -12615,11 +12777,11 @@ Nakashian, Ashod (2) + + AvaGreer1 (2) - - Ozdemir, Aybuke (2) @@ -12629,11 +12791,11 @@ Le Garrec, Vincent (2) + + BernardMeza9 (2) - - Beto (2) @@ -12643,11 +12805,11 @@ BlazejJones1 (2) + + BlessedOrozco (2) - - Blume (2) @@ -12657,11 +12819,11 @@ BoD (2) + + Bogcahi (2) - - Boivie (2) @@ -12671,11 +12833,11 @@ BoleslausSaunders (2) + + Bram (2) - - BrandiToomer (2) @@ -12685,11 +12847,11 @@ Bruceschaller (2) + + BryantMclean6 (2) - - ButlerBarron6 (2) @@ -12699,11 +12861,11 @@ C1pr1an (2) + + CallieMvzap (2) - - CallieSalgado (2) @@ -12713,11 +12875,11 @@ CandidoRutherford (2) + + CapistranOleary (2) - - Capri99 (2) @@ -12727,11 +12889,11 @@ Carlosr (2) + + CarolinaCalling (2) - - CarrieDaniels (2) @@ -12741,11 +12903,11 @@ Iacob, Catalin (2) + + CavesGill8 (2) - - Celsovsm (2) @@ -12755,11 +12917,11 @@ Chabermu (2) + + ChanieSnow2 (2) - - Chemyakyn (2) @@ -12769,11 +12931,11 @@ ChrzcicielCampbell (2) + + Cipriano (2) - - Cjbackhouse (2) @@ -12783,11 +12945,11 @@ ClariceThorne (2) + + ClaudiaCramer (2) - - Clemen Beek (2) @@ -12797,11 +12959,11 @@ Codingmicha (2) + + Colabo (2) - - Conrado (2) @@ -12811,11 +12973,11 @@ CoralieCarr7 (2) + + Crxssi (2) - - CupertinoDarnell (2) @@ -12825,11 +12987,11 @@ CyrillicEscobedo (2) + + Cœur, Antoine (2) - - DaCaPo (2) @@ -12839,11 +13001,11 @@ DaisieQuigley (2) + + Damascene (2) - - DanForrest2 (2) @@ -12851,884 +13013,892 @@ Danese (2) + Danielt998 (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) - - 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) - - Johnki (2) Jonathanacohen (2) + + JonesRichter8 (2) Jowenshaw (2) - - João Pedro (2) Jsargey (2) + + Jsbueno (2) Jstaniek (2) - - JudasPeoples9 (2) JudasPritchard (2) + + JudithGraves6 (2) Jumoun (2) - - JustinaEldridge (2) K.euser (2) + + Kammreiter (2) Kamran Mackey (2) - - Karakartala (2) KarkGunn4 (2) + + Karolus (2) Kasos (2) - - Kay D (2) Kazuyuki Yoshimura (2) + + Keepiledar (2) KeithC (2) - - Khokkanen (2) KittyBauer5 (2) + + KlementynaMckinney (2) Kmr (2) - - KolbeKline1 (2) Kolorguild (2) + + Krauss (2) keshav, krishna (2) - - KrisvdMewe (2) KroniK907 (2) + + Krumelmonster (2) KrystalMinchin (2) - - KsaweryDempsey (2) Kwilliams (2) + + L (2) LariaJohn3 (2) - - LeanaParks2 (2) LemuelHo1 (2) + + LemuelWerner5 (2) LeoNeo (2) - - Lhcezar (2) LidaMasters1 (2) + + Lino (2) Liotier (2) - - Lj LO (2) Lliehu (2) + + Scheidt, Heiko (2) LovisaKessler (2) - - Petrolekas, Luke (2) LubomyrWalden (2) + + LucretiLlb (2) Lukasjelinek (2) - - Lupp (2) LynnForbes3 (2) + + Casalin, Matteo (2) M42 (2) - - Mărăşoiu, Mariana (2) MZNBelendndq (2) + + Ma83mit (2) MabelleStanley (2) - - MadisonDarnell (2) MagdaleneOneal (2) + + MaggieGray2 (2) MagnoliaParsons (2) - - Manebule (2) Mangat veer sagar (2) + + Manu.unni (2) MarMai (2) - - MarchCourtney (2) Marcinz (2) + + Marco74 (2) MargeretRiley (2) - - MarillaMarsh7 (2) Marius (2) + + MartaRollins2 (2) MarthaBright4 (2) - - MartinPC (2) MateuszDominguez (2) + + Matt 51 (2) Mazuritz (2) - - Mbemidio (2) Meghanmcfadden15 (2) + + MercedesDelatorre (2) Merchantbusiness (2) - - Kepplinger, Martin (2) MerleGlass6 (2) + + Mesutkullar (2) Mgiri (2) - - Michaelx (2) Michal.p (2) + + Michel Gagnon (2) Michiel (2) - - Mifritscher (2) MikeyZ (2) + + MinaHuggins7 (2) Mind4z (2) - - MinervaLuna8 (2) Mitcoes (2) + + Mjkopp (2) Mklever (2) - - Lechner, Marco (2) Mloiseleur (2) + + Mnalima (2) Mnsoto (2) - - + + Mochir (2) + Mordocai (2) + + MorganJohnstone (2) @@ -13738,11 +13908,11 @@ Mst0 (2) - - Mttza1 (2) + + Musicstave (2) @@ -13752,11 +13922,11 @@ Nathansen, Martin (2) - - Mzalewski (2) + + Nacerix (2) @@ -13766,11 +13936,11 @@ NealEspinoza6 (2) - - Nestor (2) + + NettaHurd9 (2) @@ -13780,11 +13950,11 @@ NewtonZuniga9 (2) - - Nishino, Daisuke (2) + + NicholasLanier (2) @@ -13794,11 +13964,11 @@ NinaLam6 (2) - - Noirin (2) + + NoricumArthur (2) @@ -13806,546 +13976,546 @@ NorrisAndersen (2) - Northwoods35 (2) - - - - NovemberVogel (2) Nsharifi (2) + + Nuclearbob (2) Naeil, Zoueidi (2) - - OUPS (2) Oashnic (2) + + Odalcet (2) Offtkp (2) - - Oiaohm (2) OlaPost6 (2) + + OlieBooth3 (2) OlivierC (2) - - OnopriyBrandon (2) OrlandoArellano (2) + + OscarMeredith (2) Paolettopn (2) - - Paolobenve (2) Pascaje (2) + + Paultrojahn (2) Penguin42 (2) - - Percherie (2) PercherskySanford (2) + + Senna Tschudin, Peter (2) Pgraber (2) - - Phil.davis (2) Szelat, Phillip (2) + + Pierre (2) Piotrdrag (2) - - Pitonyak (2) Pkst (2) + + PolishHungarianSharp (2) Posterboy (2) - - PragueBergman (2) Pulsifer (2) + + R.Yu. (2) Rahul050 (2) - - Rbecke (2) ReeseShepherd (2) + + ReginaldMcgraw (2) RenniePrescott (2) - - RetaStern5 (2) RhodaMackey3 (2) + + RiceBurger3 (2) Ritlay (2) - - Rmarquardt (2) Roadrunner (2) + + RollandHannah (2) RosaliaFair4 (2) - - RosannaPaul7 (2) RosariaLampungm (2) + + RoyFokker (2) RoyShelton7 (2) - - Ryan (2) SDann22 (2) + + Sagar.libo (2) Sahasranaman M S (2) - - Sam888 (2) SamBenavides5 (2) + + Sankarshan (2) SavinaShaffer (2) - - Bosio, Santiago (2) Seanyoung (2) + + SebastianNorth (2) Sebutler (2) - - Sergwish (2) Sfeuser (2) + + Sgrotz (2) Shaforostoff (2) - - Shankar (2) Shaun.schutte (2) + + Shitamo (2) SidneyArredondo (2) - - Sidorelauku (2) Silwol (2) + + Simplecontrast (2) SlavicNapier8 (2) - - Kasztenny, Adam (2) Soothsilver (2) + + Spledger (2) Sshelagh (2) - - Sshi (2) Ssorgatem (2) + + StaciBorthwick (2) Stappers (2) - - Weiberg, Stefan (2) Stephan66 (2) + + Steveo o (2) StillSven (2) - - Stuarta0 (2) Sturm (2) + + Sungkhum (2) Superurbi (2) - - SusanSwain3 (2) Sven.fischer.de (2) + + Swazmo (2) Sydbarrett74 (2) - - Synanceia (Pierre) (2) Tauon (2) + + Techal (2) Teelittle (2) - - TeresaMacias3 (2) Teresavillegas1 (2) + + TheaGallardo8 (2) TheodoseyPeralta (2) - - TheophilusHess (2) Thomase (2) + + Thomeck (2) Thorongil (2) - - Tim1075 (2) Timeshifter (2) + + Timj (2) TimothyChilds (2) - - TomaMora8 (2) Tomkeb (2) + + Tomrobert87 (2) TressieCulver (2) - - Tsimonq2 (2) TuMadre (2) + + Isnard, Timothée (2) Tux40000 (2) - - Unhammer (2) Unknown 32 (2) + + Usik64 (2) ValessioBrito (2) - - VanHogan7 (2) Dhall, Varun (2) + + VasylynaKendall (2) VerneDodd5 (2) - - VeronaXiong3 (2) VeronicaGrimes (2) + + Villeroy (2) Viper550 (2) - - VirginArredondo (2) VladimirBassett (2) + + VladimirPrince (2) VladislavA (2) - - Volker (2) VolodymyraGagnon (2) + + Vossman (2) WaclawaSavage (2) - - WalentynaPatrick (2) WallaceSolano (2) + + WarrenChristian (2) WashingtonOakley (2) - - Watermelons (2) WeronikaKeene (2) + + Wi24rd (2) WikiImporter (2) - - WilhelminaEaton (2) WincentyMorrison (2) + + Wirelessben (2) Wkn (2) - - Wulei (2) + Xdelatour (2) + + + + Xoristzatziki (2) @@ -14354,11 +14524,11 @@ Yaw (2) - - ZiriaKo (2) + + ZoraWinkler1 (2) @@ -14368,11 +14538,11 @@ 29jm (1) - - A H (1) + + A.jadiba (1) @@ -14382,11 +14552,11 @@ AaronPeterson (1) - - Abdulaziz A Alayed (1) + + Absolute Garcinia (1) @@ -14396,11 +14566,11 @@ Kepenek, Ahmet Can (1) - - AdalberDesailll (1) + + Adlard.matthew (1) @@ -14410,11 +14580,11 @@ Agradecido (1) - - Ainurshakirov (1) + + Ajaxfiore (1) @@ -14424,11 +14594,11 @@ Alagris (1) - - Alavec (1) + + Albrechtloh (1) @@ -14438,11 +14608,11 @@ Aleksio Kverka (1) - - Henrie, Alex (1) + + Alex-16 (1) @@ -14452,11 +14622,11 @@ Alex80 (1) - - AlexF (1) + + AlexP111223 (1) @@ -14466,11 +14636,11 @@ Alexandrevicenzi (1) - - Alexandri (1) + + Chemichev, Alexey (1) @@ -14480,11 +14650,11 @@ Alexis Wilke (1) - - Alexnivan (1) + + Alexsandro Matias (1) @@ -14494,11 +14664,11 @@ Ali (1) - - AlphonsDen (1) + + Alvaropg (1) @@ -14508,11 +14678,11 @@ Amacater (1) - - Andarilhobotto (1) + + Anderius (1) @@ -14522,11 +14692,11 @@ AndreasK (1) - - AndreasNeudecker (1) + + Andrey.turkin (1) @@ -14536,11 +14706,11 @@ AniVar (1) - - Anjilajoli (1) + + Ankur, Khandelwal (1) @@ -14550,11 +14720,11 @@ Antonello Lobianco (1) - - AntoniePonder (1) + + Anurag kanungo (1) @@ -14564,11 +14734,11 @@ Priyadarshi, Apurva (1) - - Arekm (1) + + Ari (1) @@ -14578,11 +14748,11 @@ Arkonide (1) - - Armandos (1) + + Arnaudc (1) @@ -14592,11 +14762,11 @@ Teigseth, Arno (1) - - Artintal (1) + + ArturNeumann (1) @@ -14606,11 +14776,11 @@ Asiersar (1) - - Asselbornmauro (1) + + Astalaseven (1) @@ -14620,11 +14790,11 @@ Tang, Audrey (1) - - AundreaPqf (1) + + Averell7 (1) @@ -14634,11 +14804,11 @@ B3t (1) - - Bailiwick (1) + + Bailly02 (1) @@ -14648,11 +14818,11 @@ Bandera (1) - - BarryLovegrove (1) + + Vincent, Babu (1) @@ -14662,11 +14832,11 @@ Bburak (1) - - Bckurera (1) + + Khorram, Behrad (1) @@ -14676,11 +14846,11 @@ Bestdating (1) - - Beyoken (1) + + Beznogov (1) @@ -14690,11 +14860,11 @@ Bgloberman (1) - - Bgranados (1) + + Bhumikasethi (1) @@ -14704,11 +14874,11 @@ Biofool (1) - - Bittin (1) + + Bjossir (1) @@ -14718,11 +14888,11 @@ BlakeGartrell (1) - - BlancheBelstead (1) + + BlancheClopton (1) @@ -14732,11 +14902,11 @@ Boboo (1) - - Bolo (1) + + Borowcm (1) @@ -14746,11 +14916,11 @@ Sowden, Brad (1) - - BrentHawthorne (1) + + BridgettC (1) @@ -14760,11 +14930,11 @@ BroderiHolyman (1) - - BryceBrassell (1) + + BryceMoorhouse (1) @@ -14774,11 +14944,11 @@ Burcin (1) - - Bureken (1) + + Burger.ga (1) @@ -14788,11 +14958,11 @@ Bzsolt (1) - - BáthoryPéter (1) + + CalebSommer (1) @@ -14802,11 +14972,11 @@ Paul, Cameron (1) - - Capira (1) + + CarloASilva (1) @@ -14816,11 +14986,11 @@ Carlos.gilaranz (1) - - Castarco (1) + + Cathy (1) @@ -14830,11 +15000,11 @@ Cesera (1) - - ChantalWalker (1) + + CharlesJenkins (1) @@ -14844,11 +15014,11 @@ Chmilblick (1) - - Beauzée-Luyssen, Hugo (1) + + ChrPr (1) @@ -14858,11 +15028,11 @@ Christoph.herzog (1) - - Chrlutz (1) + + Ciampix (1) @@ -14872,11 +15042,11 @@ Ciriaco (1) - - Classieur (1) + + Claudio Pannacci (1) @@ -14886,11 +15056,11 @@ Clem (1) - - CletaValentino (1) + + Cnzhx (1) @@ -14900,11 +15070,11 @@ Cora17 (1) - - Corsolibreoffice (1) + + Cosmopolitan (1) @@ -14914,11 +15084,11 @@ Cpinedar (1) - - Cpmipn (1) + + Craigsbookclub (1) @@ -14928,11 +15098,11 @@ Csongorhalmai (1) - - Css17 (1) + + Ctfranz (1) @@ -14942,1495 +15112,1495 @@ DaisieDavison (1) - - Danichocolate (1) - - Danielt998 (1) - + + Dar18proore (1) Darianospb (1) - - DarylAlcantar (1) DarylBoot (1) + + Dave (1) DavidDyck (1) - - Davidmichel (1) DawnOgles (1) + + Dbojan (1) Di Marco, Daniel (1) - - DeShark (1) DeannaQuaife (1) + + Ray, Debarshi (1) DeborahW18 (1) - - Decs75 (1) Dennisroczek's Test Account (1) + + Deragon (1) Dezsiszabi (1) - - Kis-Ádám, László (1) Herde, Daniel (1) + + Dhiren (1) Dianasedlak (1) - - Dirgita (1) Kettner, Valentin (1) + + Diver (1) Do Nhu Vy (1) - - DocuFree (1) Dominiko (1) + + Dominuk (1) Donadel (1) - - DoreenDuell (1) Douglasm (1) + + Drizamanuber (1) Drlandi (1) - - Drtimwright (1) Dschulten (1) + + Dusek (1) Dxider (1) - - Eardeleanu (1) EarnestLamaro (1) + + Echada (1) EdgardoRios (1) - - Edsonlead (1) Edz (1) + + Efcis (1) Efegurkan (1) - - Brill, Christoph (1) Ehenryb (1) + + Ekuiitr (1) ElahiMohammad (1) - - Elliot1415 (1) ElmaWalcott (1) + + Elshize (1) Emad (1) - - Emanuele.gissi (1) Emyr (1) + + Enesates (1) Ennael (1) - - Erasmo (1) Erdemdemirkapi (1) + + Eric (1) ErickRijoJr (1) - - Ernsttremel (1) Roux, Elie (1) + + Erto (1) Esben aaberg (1) - - EstelaAWTxiu (1) Etinos (1) + + Etua (1) Eulerian (1) - - Evfool (1) FMA (1) + + Factooor (1) Falatooni (1) - - Falcao (1) Farhaf (1) + + Farhank (1) Farlfr (1) - - FarzanehSarafraz (1) Faseeh1218 (1) + + Fdem (1) Fenchi (1) - - FerminAndrade (1) Feyza (1) + + Fgland (1) Flaviodegodoi (1) - - Flirtwomens (1) Foadv (1) + + Foobar (1) Fourdollars (1) - - Francesco (1) Fred.th (1) + + Funnym0nk3y (1) Manas Joshi (1) - - Gabix (1) GabrielSwart (1) + + Gabrielcossette (1) Gabrielezorzi (1) - - Ganton (1) Gbilotta (1) + + Gcoelho (1) GeeZ (1) - - Gekacheka (1) Geoff newson (1) + + Gerard (1) van Valkenhoef, Gert (1) - - Houston, Gary (1) Giancav (1) + + Gicmo (1) Gmeijssen (1) - - Goldensgui (1) Gpmanrpi (1) + + Grahl (1) GrantCelley (1) - - Grass-tree (1) Hernandez, Gregg (1) + + GroverYQVvwokac (1) Gstein (1) - - Guhde (1) Guillaume (1) + + Gxyd (1) H Wettlaufer (1) - - HFujimaki (1) HKagerer (1) + + HLGZorawdi (1) Haggai (1) - - Hagos (1) Hamati (1) + + Hamkins (1) Hapeck (1) - - Hasinasi (1) Hbr (1) + + Rui Wang (1) Hermeli2856 (1) - - HessnovTHR44 (1) Heygo (1) + + Heyheyitshay (1) Hfischer (1) - - Hillrich (1) HiltonFtel (1) + + Hitomi t (1) Hkdocholid (1) - - Hlavaty, Tomas (1) Hoaivan27299 (1) + + K, Akshit (1) Honza.havlicek (1) - - Hopman (1) HoracioRydge (1) + + Hornmichaels (1) Hosiryuhosi (1) - - Hriostat (1) HumbertGno (1) + + Hwoehrle (1) Ialbors (1) - - Ian (1) Iandol (1) + + Ianjo (1) Iantheprogrammer (1) - - IbraM (1) IceBlur (1) + + Ida (1) Gilham, Ian (1) - - Igorizyumin (1) Imypsychconsult (1) + + Iosonja (1) Şendur, İrem (1) - - Irene (1) IrrevdJohn (1) + + IrvinFunkw (1) Ismael (1) - - IvanP (1) JDługosz (1) + + JJ2020 (1) JK2308 (1) - - Jab (1) Jailletc36 (1) + + JaimeS (1) Jamil (1) - - JanEnEm (1) Janani (1) + + Jani (1) Jano (1) - - Janvlug (1) Jayppc (1) + + Jazzon (1) Jcdericco (1) - - Chaffraix, Julien (1) Jean.fr (1) + + JeanAmessdvaei (1) JeanMcPhillamy (1) - - JefferyMackenna (1) Jentron256 (1) + + Jeongkyu (1) Jerdum (1) - - Bicha, Jeremy (1) JerryShi (1) + + JessicaParker (1) Gao, Qiwen (1) - - JestineNww (1) Lazar, Timotej (1) + + Jflory7 (1) Bruhn, Jan-Henrik (1) - - Jinocvla (1) JiroMatsuzawa (1) + + Jj151515 (1) Jmarchn (1) - - Joachim (1) Joanluc (1) + + Joaofernando (1) JoelH (1) - - JohnTheHuman (1) Johnplay2 (1) + + JomarSilva (1) Jonatanpc8 (1) - - JonelleFritz (1) Wu, Haidong (1) + + JordanS (1) Jorge Rodríguez Fonseca (1) - - Jorgemendes (1) JoseGatica (1) + + Joselaurian (1) Joshun (1) - - José Eduardo (1) Jp.santi (1) + + Jpl (1) Clarke, James (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) + + 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) - - Mrund (1) Muhammadsufyanzainalabidin (1) + + Mw (1) Myan (1) - - MyraBlacklow (1) N3rd4i (1) + + NEOhidra (1) NNe8Lx2gc (1) - - Nanotron (1) Nattu (1) + + Ncaio (1) Nedrichards (1) - - NellieSMWX (1) Neteler (1) + + Nevanos (1) Ngoswami (1) - - Nickko (1) Nilss (1) + + Nithin.padavu (1) Ngo, Minh (1) - - Nnino2 (1) Norty (1) + + Notafish (1) NotesTracker (1) - - Nouiurm (1) Norbert X (1) + + Nurohman (1) Oclei (1) - - Oig (1) Oiouitt (1) + + Okusi (1) Olr (1) - - Omansmith (1) Omerta (1) + + Onurkucuk67 (1) Oosterkamp (1) - - Opestawon (1) Sezen, Hunter (1) + + Orrd (1) Osoitz (1) - - Otrembad (1) Oui (1) + + Ouyang.leyan (1) Anderson, Owen (1) - - Esen, Özcan (1) Ozpoz (1) + + Öztürk, Emre (1) PBsoft (1) - - Pal, Pawan (1) Padenton (1) + + Paintdog (1) PamalaDorsch (1) - - Pankaj (1) Papesky (1) + + Passerpunt (1) Pastim (1) - - Paulmenzel (1) Paulolima (1) + + + + Pedro.silva (1) + Pelambrera (1) PelinKuran (1) - - PenelopHewlett (1) + + Nowee, Peter (1) @@ -16440,11 +16610,11 @@ Pharmankur (1) - - Phb.nbnet.nb.ca (1) + + Pherjung (1) @@ -16454,11 +16624,11 @@ Philhart (1) - - PhilipTimms (1) + + Philipp.weissenbacher (1) @@ -16468,11 +16638,11 @@ Krylov, Phil (1) - - Phomes (1) + + Paraiso, Joan (1) @@ -16482,11 +16652,11 @@ Piero (1) - - PieterDeBruijn (1) + + Pietro.caballeri (1) @@ -16496,11 +16666,11 @@ Piratu (1) - - Piternoize (1) + + Pjotr (1) @@ -16510,11 +16680,11 @@ Plastique (1) - - Plastovicka (1) + + Moscu, Alexandru (1) @@ -16524,11 +16694,11 @@ Por (1) - - Carter, Travis (1) + + Prosper (1) @@ -16538,11 +16708,11 @@ Psmits (1) - - Psychicread531 (1) + + Vidhey Pv (1) @@ -16552,11 +16722,11 @@ Illarionov, Arkadiy (1) - - Qiguo (1) + + Qtwallaert (1) @@ -16566,11 +16736,11 @@ Quickbooktech (1) - - Qwe (1) + + Rahuldeshmukh101 (1) @@ -16580,11 +16750,11 @@ Ramonturner (1) - - Randallperry (1) + + Ratajs (1) @@ -16594,11 +16764,11 @@ Rcampbelllaos (1) - - RebeccaToscano (1) + + Rettichschnidi (1) @@ -16608,11 +16778,11 @@ Rholler (1) - - Rich (1) + + Richardprins (1) @@ -16622,11 +16792,11 @@ Riessmi (1) - - Rif (1) + + Rifkiaz (1) @@ -16636,11 +16806,11 @@ Ringlerloje (1) - - Rion (1) + + Ritzema, Brent (1) @@ -16650,11 +16820,11 @@ Kondratenko, Rostislav (1) - - Robert Wetzlmayr (1) + + Robineh (1) @@ -16664,11 +16834,11 @@ Rockers (1) - - Rodney78 (1) + + Rogach (1) @@ -16678,11 +16848,11 @@ Rombert (1) - - Ron1 (1) + + Ronakkothari123 (1) @@ -16692,11 +16862,11 @@ Roscoe5731 (1) - - Rosemarie (1) + + Rpott (1) @@ -16706,11 +16876,11 @@ RuleAndLine (1) - - Rvr (1) + + Ryho (1) @@ -16720,11 +16890,11 @@ SallyMorales (1) - - Samanicute (1) + + Sambhav2612 (1) @@ -16734,11 +16904,11 @@ Sandeeps (1) - - Sanipache (1) + + Saracans (1) @@ -16746,6 +16916,9 @@ Sariyar (1) + Satya kompella (1) + + Sbar1 (1) @@ -17218,7 +17391,7 @@ 鄒延 (1) - + diff -Nru libreoffice-7.3.6/reportdesign/source/ui/dlg/Navigator.cxx libreoffice-7.3.7/reportdesign/source/ui/dlg/Navigator.cxx --- libreoffice-7.3.6/reportdesign/source/ui/dlg/Navigator.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/reportdesign/source/ui/dlg/Navigator.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -238,6 +238,7 @@ delete pData; return false; }); + m_pSelectionListener->dispose(); m_pReportListener->dispose(); } diff -Nru libreoffice-7.3.6/sc/inc/addincol.hxx libreoffice-7.3.7/sc/inc/addincol.hxx --- libreoffice-7.3.6/sc/inc/addincol.hxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sc/inc/addincol.hxx 2022-10-27 10:11:14.000000000 +0000 @@ -42,6 +42,7 @@ class SfxObjectShell; class ScUnoAddInFuncData; class ScFuncDesc; +class ScDocument; typedef std::unordered_map< OUString, const ScUnoAddInFuncData* > ScAddInHashMap; @@ -188,6 +189,7 @@ css::uno::Sequence aArgs; css::uno::Sequence aVarArg; css::uno::Reference xCaller; + ScDocument& mrDoc; bool bValidCount; // result: FormulaError nErrCode; @@ -201,7 +203,7 @@ public: // exact name - ScUnoAddInCall( ScUnoAddInCollection& rColl, const OUString& rName, + ScUnoAddInCall( ScDocument& rDoc, ScUnoAddInCollection& rColl, const OUString& rName, tools::Long nParamCount ); ~ScUnoAddInCall(); diff -Nru libreoffice-7.3.6/sc/qa/unit/ucalc.cxx libreoffice-7.3.7/sc/qa/unit/ucalc.cxx --- libreoffice-7.3.6/sc/qa/unit/ucalc.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sc/qa/unit/ucalc.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -400,6 +400,10 @@ { m_pDoc->InsertTab(0, "foo"); + svl::SharedStringPool& rPool = m_pDoc->GetSharedStringPool(); + size_t extraCount = rPool.getCount(); // internal items such as SharedString::getEmptyString() + size_t extraCountIgnoreCase = rPool.getCountIgnoreCase(); + // Strings that are identical. m_pDoc->SetString(ScAddress(0,0,0), "Andy"); // A1 m_pDoc->SetString(ScAddress(0,1,0), "Andy"); // A2 @@ -437,40 +441,39 @@ } // Check the string counts after purging. Purging shouldn't remove any strings in this case. - svl::SharedStringPool& rPool = m_pDoc->GetSharedStringPool(); rPool.purge(); - CPPUNIT_ASSERT_EQUAL(static_cast(5), rPool.getCount()); - CPPUNIT_ASSERT_EQUAL(static_cast(2), rPool.getCountIgnoreCase()); + CPPUNIT_ASSERT_EQUAL(5+extraCount, rPool.getCount()); + CPPUNIT_ASSERT_EQUAL(2+extraCountIgnoreCase, rPool.getCountIgnoreCase()); // Clear A1 and purge again. clearRange(m_pDoc, ScAddress(0,0,0)); rPool.purge(); - CPPUNIT_ASSERT_EQUAL(static_cast(5), rPool.getCount()); - CPPUNIT_ASSERT_EQUAL(static_cast(2), rPool.getCountIgnoreCase()); + CPPUNIT_ASSERT_EQUAL(5+extraCount, rPool.getCount()); + CPPUNIT_ASSERT_EQUAL(2+extraCountIgnoreCase, rPool.getCountIgnoreCase()); // Clear A2 and purge again. clearRange(m_pDoc, ScAddress(0,1,0)); rPool.purge(); - CPPUNIT_ASSERT_EQUAL(static_cast(4), rPool.getCount()); - CPPUNIT_ASSERT_EQUAL(static_cast(2), rPool.getCountIgnoreCase()); + CPPUNIT_ASSERT_EQUAL(4+extraCount, rPool.getCount()); + CPPUNIT_ASSERT_EQUAL(2+extraCountIgnoreCase, rPool.getCountIgnoreCase()); // Clear A3 and purge again. clearRange(m_pDoc, ScAddress(0,2,0)); rPool.purge(); - CPPUNIT_ASSERT_EQUAL(static_cast(3), rPool.getCount()); - CPPUNIT_ASSERT_EQUAL(static_cast(2), rPool.getCountIgnoreCase()); + CPPUNIT_ASSERT_EQUAL(3+extraCount, rPool.getCount()); + CPPUNIT_ASSERT_EQUAL(2+extraCountIgnoreCase, rPool.getCountIgnoreCase()); // Clear A4 and purge again. clearRange(m_pDoc, ScAddress(0,3,0)); rPool.purge(); - CPPUNIT_ASSERT_EQUAL(static_cast(1), rPool.getCount()); - CPPUNIT_ASSERT_EQUAL(static_cast(1), rPool.getCountIgnoreCase()); + CPPUNIT_ASSERT_EQUAL(1+extraCount, rPool.getCount()); + CPPUNIT_ASSERT_EQUAL(1+extraCountIgnoreCase, rPool.getCountIgnoreCase()); // Clear A5 and the pool should be completely empty. clearRange(m_pDoc, ScAddress(0,4,0)); rPool.purge(); - CPPUNIT_ASSERT_EQUAL(static_cast(0), rPool.getCount()); - CPPUNIT_ASSERT_EQUAL(static_cast(0), rPool.getCountIgnoreCase()); + CPPUNIT_ASSERT_EQUAL(extraCount, rPool.getCount()); + CPPUNIT_ASSERT_EQUAL(extraCountIgnoreCase, rPool.getCountIgnoreCase()); // Now, compare string and edit text cells. m_pDoc->SetString(ScAddress(0,0,0), "Andy and Bruce"); // A1 diff -Nru libreoffice-7.3.6/sc/source/core/data/column3.cxx libreoffice-7.3.7/sc/source/core/data/column3.cxx --- libreoffice-7.3.6/sc/source/core/data/column3.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sc/source/core/data/column3.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -547,6 +547,40 @@ if (GetDoc().IsClipOrUndo()) return; + // Need to process (start listening) entire shared formula groups, not just + // a slice thereof. + bool bEnlargedDown = false; + aPos = maCells.position(nRow1); + it = aPos.first; + if (it->type == sc::element_type_formula) + { + ScFormulaCell& rCell = *sc::formula_block::at(*it->data, aPos.second); + if (rCell.IsShared()) + { + nRow1 = std::min( nRow1, rCell.GetSharedTopRow()); + if (nRow2 < rCell.GetSharedTopRow() + rCell.GetSharedLength()) + { + nRow2 = rCell.GetSharedTopRow() + rCell.GetSharedLength() - 1; + bEnlargedDown = true; + // Same end row is also enlarged, i.e. doesn't need to be + // checked for another group. + } + } + } + if (!bEnlargedDown) + { + aPos = maCells.position(it, nRow2); + it = aPos.first; + if (it->type == sc::element_type_formula) + { + ScFormulaCell& rCell = *sc::formula_block::at(*it->data, aPos.second); + if (rCell.IsShared()) + { + nRow2 = std::max( nRow2, rCell.GetSharedTopRow() + rCell.GetSharedLength() - 1); + } + } + } + AttachFormulaCellsHandler aFunc(rCxt); sc::ProcessFormula(it, maCells, nRow1, nRow2, aFunc); } diff -Nru libreoffice-7.3.6/sc/source/core/tool/addincol.cxx libreoffice-7.3.7/sc/source/core/tool/addincol.cxx --- libreoffice-7.3.6/sc/source/core/tool/addincol.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sc/source/core/tool/addincol.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -58,6 +58,7 @@ #include #include #include +#include #include using namespace com::sun::star; @@ -1228,8 +1229,9 @@ return true; } -ScUnoAddInCall::ScUnoAddInCall( ScUnoAddInCollection& rColl, const OUString& rName, +ScUnoAddInCall::ScUnoAddInCall( ScDocument& rDoc, ScUnoAddInCollection& rColl, const OUString& rName, tools::Long nParamCount ) : + mrDoc( rDoc ), bValidCount( false ), nErrCode( FormulaError::NoCode ), // before function was called bHasString( true ), @@ -1582,13 +1584,13 @@ for (sal_Int32 nCol=0; nColPutString( - svl::SharedString(pColArr[nCol]), + mrDoc.GetSharedStringPool().intern(pColArr[nCol]), static_cast(nCol), static_cast(nRow)); } for (sal_Int32 nCol=nColCount; nColPutString( - svl::SharedString(OUString()), + svl::SharedString::getEmptyString(), static_cast(nCol), static_cast(nRow)); } } diff -Nru libreoffice-7.3.6/sc/source/core/tool/interpr4.cxx libreoffice-7.3.7/sc/source/core/tool/interpr4.cxx --- libreoffice-7.3.6/sc/source/core/tool/interpr4.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sc/source/core/tool/interpr4.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -2710,7 +2710,7 @@ // bLocalFirst=false in FindFunction, cFunc should be the stored // internal name - ScUnoAddInCall aCall( *ScGlobal::GetAddInCollection(), aUnoName, nParamCount ); + ScUnoAddInCall aCall( mrDoc, *ScGlobal::GetAddInCollection(), aUnoName, nParamCount ); if ( !aCall.ValidParamCount() ) SetError( FormulaError::IllegalParameter ); diff -Nru libreoffice-7.3.6/sc/source/core/tool/interpr7.cxx libreoffice-7.3.7/sc/source/core/tool/interpr7.cxx --- libreoffice-7.3.6/sc/source/core/tool/interpr7.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sc/source/core/tool/interpr7.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -219,6 +219,7 @@ case XPATH_STRING: PushString(OUString::createFromAscii(reinterpret_cast(pXPathObj->stringval))); break; +#if LIBXML_VERSION < 21000 || defined(LIBXML_XPTR_LOCS_ENABLED) case XPATH_POINT: PushNoValue(); break; @@ -228,6 +229,7 @@ case XPATH_LOCATIONSET: PushNoValue(); break; +#endif case XPATH_USERS: PushNoValue(); break; diff -Nru libreoffice-7.3.6/sc/source/ui/app/inputhdl.cxx libreoffice-7.3.7/sc/source/ui/app/inputhdl.cxx --- libreoffice-7.3.6/sc/source/ui/app/inputhdl.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sc/source/ui/app/inputhdl.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -2171,10 +2171,11 @@ { // Examine character left to the cursor sal_Int32 nPos = aSel.nStartPos - 1; - OUString aFormula = mpEditEngine->GetText(0); + OUString aFormula = mpEditEngine->GetText(aSel.nStartPara); sal_Unicode c = aFormula[nPos]; if ( c == '(' || c == ')' ) { + // Note this matches only within one paragraph. sal_Int32 nOther = lcl_MatchParenthesis( aFormula, nPos ); if ( nOther != -1 ) { @@ -2190,9 +2191,9 @@ mpEditEngine->RemoveCharAttribs( i, EE_CHAR_WEIGHT ); } - ESelection aSelThis( 0,nPos, 0,nPos+1 ); + ESelection aSelThis( aSel.nStartPara, nPos, aSel.nStartPara, nPos+1); mpEditEngine->QuickSetAttribs( aSet, aSelThis ); - ESelection aSelOther( 0,nOther, 0,nOther+1 ); + ESelection aSelOther( aSel.nStartPara, nOther, aSel.nStartPara, nOther+1); mpEditEngine->QuickSetAttribs( aSet, aSelOther ); // Dummy InsertText for Update and Paint (selection is empty) @@ -2560,7 +2561,9 @@ } else aStr = GetEditText(mpEditEngine.get()); - mbEditingExistingContent = !aStr.isEmpty(); + + // cTyped!=0 is overtyping, not editing. + mbEditingExistingContent = !cTyped && !aStr.isEmpty(); if (aStr.startsWith("{=") && aStr.endsWith("}") ) // Matrix formula? { diff -Nru libreoffice-7.3.6/sc/source/ui/app/inputwin.cxx libreoffice-7.3.7/sc/source/ui/app/inputwin.cxx --- libreoffice-7.3.6/sc/source/ui/app/inputwin.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sc/source/ui/app/inputwin.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -2363,8 +2363,7 @@ else { const SfxHintId nHintId = rHint.GetId(); - if (nHintId == SfxHintId::ScAreasChanged || nHintId == SfxHintId::ScNavigatorUpdateAll - || nHintId == SfxHintId::ScTablesRenamed) + if (nHintId == SfxHintId::ScAreasChanged || nHintId == SfxHintId::ScNavigatorUpdateAll) FillRangeNames(); } } diff -Nru libreoffice-7.3.6/sc/source/ui/docshell/docfunc.cxx libreoffice-7.3.7/sc/source/ui/docshell/docfunc.cxx --- libreoffice-7.3.6/sc/source/ui/docshell/docfunc.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sc/source/ui/docshell/docfunc.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -3400,6 +3400,7 @@ SfxApplication* pSfxApp = SfxGetpApp(); // Navigator pSfxApp->Broadcast( SfxHint( SfxHintId::ScTablesChanged ) ); + pSfxApp->Broadcast( SfxHint( SfxHintId::ScAreasChanged ) ); pSfxApp->Broadcast( SfxHint( SfxHintId::ScDbAreasChanged ) ); pSfxApp->Broadcast( SfxHint( SfxHintId::ScAreaLinksChanged ) ); @@ -3516,7 +3517,7 @@ rDocShell.PostPaintExtras(); aModificator.SetDocumentModified(); SfxGetpApp()->Broadcast( SfxHint( SfxHintId::ScTablesChanged ) ); - SfxGetpApp()->Broadcast( SfxHint( SfxHintId::ScTablesRenamed ) ); + SfxGetpApp()->Broadcast( SfxHint( SfxHintId::ScAreasChanged ) ); bSuccess = true; } diff -Nru libreoffice-7.3.6/sc/source/ui/undo/undotab.cxx libreoffice-7.3.7/sc/source/ui/undo/undotab.cxx --- libreoffice-7.3.6/sc/source/ui/undo/undotab.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sc/source/ui/undo/undotab.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -363,6 +363,7 @@ } SfxApplication* pSfxApp = SfxGetpApp(); // Navigator pSfxApp->Broadcast( SfxHint( SfxHintId::ScTablesChanged ) ); + pSfxApp->Broadcast( SfxHint( SfxHintId::ScAreasChanged ) ); pSfxApp->Broadcast( SfxHint( SfxHintId::ScDbAreasChanged ) ); pSfxApp->Broadcast( SfxHint( SfxHintId::ScAreaLinksChanged ) ); @@ -433,7 +434,7 @@ rDoc.RenameTab( nTabP, rName ); SfxGetpApp()->Broadcast( SfxHint( SfxHintId::ScTablesChanged ) ); // Navigator - SfxGetpApp()->Broadcast( SfxHint( SfxHintId::ScTablesRenamed ) ); // Name Box + SfxGetpApp()->Broadcast( SfxHint( SfxHintId::ScAreasChanged ) ); // Also Name Box pDocShell->PostPaintGridAll(); pDocShell->PostPaintExtras(); @@ -597,7 +598,9 @@ if (pViewShell) pViewShell->SetTabNo((*mpOldTabs)[0],true); - SfxGetpApp()->Broadcast( SfxHint( SfxHintId::ScTablesChanged ) ); // Navigator + SfxApplication* pSfxApp = SfxGetpApp(); // Navigator + pSfxApp->Broadcast( SfxHint( SfxHintId::ScTablesChanged ) ); + pSfxApp->Broadcast( SfxHint( SfxHintId::ScAreasChanged ) ); pDocShell->PostPaintGridAll(); pDocShell->PostPaintExtras(); diff -Nru libreoffice-7.3.6/sc/source/ui/view/viewfun2.cxx libreoffice-7.3.7/sc/source/ui/view/viewfun2.cxx --- libreoffice-7.3.6/sc/source/ui/view/viewfun2.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sc/source/ui/view/viewfun2.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -2591,6 +2591,7 @@ SfxApplication* pSfxApp = SfxGetpApp(); // Navigator pSfxApp->Broadcast( SfxHint( SfxHintId::ScTablesChanged ) ); + pSfxApp->Broadcast( SfxHint( SfxHintId::ScAreasChanged ) ); pSfxApp->Broadcast( SfxHint( SfxHintId::ScDbAreasChanged ) ); pSfxApp->Broadcast( SfxHint( SfxHintId::ScAreaLinksChanged ) ); } diff -Nru libreoffice-7.3.6/sd/qa/uitest/impress_tests/tdf148620.py libreoffice-7.3.7/sd/qa/uitest/impress_tests/tdf148620.py --- libreoffice-7.3.6/sd/qa/uitest/impress_tests/tdf148620.py 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sd/qa/uitest/impress_tests/tdf148620.py 1970-01-01 00:00:00.000000000 +0000 @@ -1,77 +0,0 @@ -# -*- tab-width: 4; indent-tabs-mode: nil; py-indent-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/. -# - -from uitest.uihelper.common import get_state_as_dict -from libreoffice.uno.propertyvalue import mkPropertyValues -from uitest.framework import UITestCase - -class Tdf148620(UITestCase): - - def test_Tdf148620(self): - with self.ui_test.create_doc_in_start_center("impress") as document: - - xTemplateDlg = self.xUITest.getTopFocusWindow() - xCancelBtn = xTemplateDlg.getChild("close") - self.ui_test.close_dialog_through_button(xCancelBtn) - - xDoc = self.xUITest.getTopFocusWindow() - xEditWin = xDoc.getChild("impress_win") - - xEditWin.executeAction("SELECT", mkPropertyValues({"OBJECT":"Unnamed Drawinglayer object 1"})) - self.assertEqual("com.sun.star.drawing.SvxShapeCollection", document.CurrentSelection.getImplementationName()) - - xEditWin.executeAction("TYPE", mkPropertyValues({"TEXT":"one"})) - xEditWin.executeAction("TYPE", mkPropertyValues({"KEYCODE": "RETURN"})) - xEditWin.executeAction("TYPE", mkPropertyValues({"TEXT":"two"})) - xEditWin.executeAction("TYPE", mkPropertyValues({"KEYCODE": "RETURN"})) - xEditWin.executeAction("TYPE", mkPropertyValues({"TEXT":"three"})) - xEditWin.executeAction("TYPE", mkPropertyValues({"KEYCODE": "RETURN"})) - xEditWin.executeAction("TYPE", mkPropertyValues({"TEXT":"four"})) - xEditWin.executeAction("TYPE", mkPropertyValues({"KEYCODE": "RETURN"})) - xEditWin.executeAction("TYPE", mkPropertyValues({"TEXT":"five"})) - xEditWin.executeAction("TYPE", mkPropertyValues({"KEYCODE": "RETURN"})) - xEditWin.executeAction("TYPE", mkPropertyValues({"TEXT":"six"})) - - self.assertEqual("One\nTwo\nThree\nFour\nFive\nsix", document.DrawPages[0].getByIndex(1).String) - - xArgs = mkPropertyValues({"KeyModifier": 0}) - self.xUITest.executeCommandWithParameters(".uno:OutlineUp", xArgs) - self.assertEqual("One\nTwo\nThree\nFour\nsix\nFive", document.DrawPages[0].getByIndex(1).String) - - self.xUITest.executeCommandWithParameters(".uno:OutlineUp", xArgs) - self.assertEqual("One\nTwo\nThree\nsix\nFour\nFive", document.DrawPages[0].getByIndex(1).String) - - self.xUITest.executeCommandWithParameters(".uno:OutlineUp", xArgs) - self.assertEqual("One\nTwo\nsix\nThree\nFour\nFive", document.DrawPages[0].getByIndex(1).String) - - self.xUITest.executeCommandWithParameters(".uno:OutlineUp", xArgs) - self.assertEqual("One\nsix\nTwo\nThree\nFour\nFive", document.DrawPages[0].getByIndex(1).String) - - self.xUITest.executeCommandWithParameters(".uno:OutlineUp", xArgs) - self.assertEqual("six\nOne\nTwo\nThree\nFour\nFive", document.DrawPages[0].getByIndex(1).String) - - self.xUITest.executeCommandWithParameters(".uno:OutlineDown", xArgs) - - # Without the fix in place, this test would have failed with - # AssertionError: 'One\nsix\nTwo\nThree\nFour\nFive' != 'One\nTwo\nsix\nThree\nFour\nFive' - self.assertEqual("One\nsix\nTwo\nThree\nFour\nFive", document.DrawPages[0].getByIndex(1).String) - - self.xUITest.executeCommandWithParameters(".uno:OutlineDown", xArgs) - self.assertEqual("One\nTwo\nsix\nThree\nFour\nFive", document.DrawPages[0].getByIndex(1).String) - - self.xUITest.executeCommandWithParameters(".uno:OutlineDown", xArgs) - self.assertEqual("One\nTwo\nThree\nsix\nFour\nFive", document.DrawPages[0].getByIndex(1).String) - - self.xUITest.executeCommandWithParameters(".uno:OutlineDown", xArgs) - self.assertEqual("One\nTwo\nThree\nFour\nsix\nFive", document.DrawPages[0].getByIndex(1).String) - - self.xUITest.executeCommandWithParameters(".uno:OutlineDown", xArgs) - self.assertEqual("One\nTwo\nThree\nFour\nFive\nsix", document.DrawPages[0].getByIndex(1).String) - -# vim: set shiftwidth=4 softtabstop=4 expandtab: diff -Nru libreoffice-7.3.6/sd/qa/unit/uiimpress.cxx libreoffice-7.3.7/sd/qa/unit/uiimpress.cxx --- libreoffice-7.3.6/sd/qa/unit/uiimpress.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sd/qa/unit/uiimpress.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -65,6 +65,8 @@ virtual void tearDown() override; void checkCurrentPageNumber(sal_uInt16 nNum); + void typeString(SdXImpressDocument* rImpressDocument, const std::string& rStr); + void typeKey(SdXImpressDocument* rImpressDocument, const sal_uInt16 nKey); void insertStringToObject(sal_uInt16 nObj, const std::string& rStr, bool bUseEscape); sd::slidesorter::SlideSorterViewShell* getSlideSorterViewShell(); }; @@ -96,6 +98,23 @@ CPPUNIT_ASSERT_EQUAL(nNum, nPageNumber); } +void SdUiImpressTest::typeKey(SdXImpressDocument* rImpressDocument, const sal_uInt16 nKey) +{ + rImpressDocument->postKeyEvent(LOK_KEYEVENT_KEYINPUT, 0, nKey); + rImpressDocument->postKeyEvent(LOK_KEYEVENT_KEYUP, 0, nKey); + Scheduler::ProcessEventsToIdle(); +} + +void SdUiImpressTest::typeString(SdXImpressDocument* rImpressDocument, const std::string& rStr) +{ + for (const char c : rStr) + { + rImpressDocument->postKeyEvent(LOK_KEYEVENT_KEYINPUT, c, 0); + rImpressDocument->postKeyEvent(LOK_KEYEVENT_KEYUP, c, 0); + Scheduler::ProcessEventsToIdle(); + } +} + void SdUiImpressTest::insertStringToObject(sal_uInt16 nObj, const std::string& rStr, bool bUseEscape) { @@ -106,24 +125,17 @@ CPPUNIT_ASSERT_MESSAGE("No Shape", pShape); SdrView* pView = pViewShell->GetView(); pView->MarkObj(pShape, pView->GetSdrPageView()); + Scheduler::ProcessEventsToIdle(); CPPUNIT_ASSERT(!pView->IsTextEdit()); - for (const char c : rStr) - { - pImpressDocument->postKeyEvent(LOK_KEYEVENT_KEYINPUT, c, 0); - pImpressDocument->postKeyEvent(LOK_KEYEVENT_KEYUP, c, 0); - Scheduler::ProcessEventsToIdle(); - } + typeString(pImpressDocument, rStr); CPPUNIT_ASSERT(pView->IsTextEdit()); if (bUseEscape) { - pImpressDocument->postKeyEvent(LOK_KEYEVENT_KEYINPUT, 0, awt::Key::ESCAPE); - pImpressDocument->postKeyEvent(LOK_KEYEVENT_KEYUP, 0, awt::Key::ESCAPE); - Scheduler::ProcessEventsToIdle(); - + typeKey(pImpressDocument, KEY_ESCAPE); CPPUNIT_ASSERT(!pView->IsTextEdit()); } } @@ -527,6 +539,86 @@ CPPUNIT_ASSERT_EQUAL(OUString("Test 2"), pViewShell->GetActualPage()->GetName()); } +CPPUNIT_TEST_FIXTURE(SdUiImpressTest, testTdf148620) +{ + mxComponent = loadFromDesktop("private:factory/simpress", + "com.sun.star.presentation.PresentationDocument"); + + auto pXImpressDocument = dynamic_cast(mxComponent.get()); + + uno::Reference xDrawPagesSupplier(mxComponent, uno::UNO_QUERY); + uno::Reference xDrawPage(xDrawPagesSupplier->getDrawPages()->getByIndex(0), + uno::UNO_QUERY); + uno::Reference xShape(xDrawPage->getByIndex(1), uno::UNO_QUERY); + CPPUNIT_ASSERT_EQUAL(OUString(u""), xShape->getString()); + + insertStringToObject(1, "one", /*bUseEscape*/ false); + typeKey(pXImpressDocument, KEY_RETURN); + typeString(pXImpressDocument, "two"); + typeKey(pXImpressDocument, KEY_RETURN); + typeString(pXImpressDocument, "three"); + typeKey(pXImpressDocument, KEY_RETURN); + typeString(pXImpressDocument, "four"); + typeKey(pXImpressDocument, KEY_RETURN); + typeString(pXImpressDocument, "five"); + typeKey(pXImpressDocument, KEY_RETURN); + typeString(pXImpressDocument, "six"); + + CPPUNIT_ASSERT_EQUAL(OUString(u"One\nTwo\nThree\nFour\nFive\nsix"), xShape->getString()); + + uno::Sequence aArgs( + comphelper::InitPropertySequence({ { "KeyModifier", uno::Any(sal_Int32(0)) } })); + dispatchCommand(mxComponent, ".uno:OutlineUp", aArgs); + Scheduler::ProcessEventsToIdle(); + + CPPUNIT_ASSERT_EQUAL(OUString(u"One\nTwo\nThree\nFour\nsix\nFive"), xShape->getString()); + + dispatchCommand(mxComponent, ".uno:OutlineUp", aArgs); + Scheduler::ProcessEventsToIdle(); + + CPPUNIT_ASSERT_EQUAL(OUString(u"One\nTwo\nThree\nsix\nFour\nFive"), xShape->getString()); + + dispatchCommand(mxComponent, ".uno:OutlineUp", aArgs); + Scheduler::ProcessEventsToIdle(); + + CPPUNIT_ASSERT_EQUAL(OUString(u"One\nTwo\nsix\nThree\nFour\nFive"), xShape->getString()); + + dispatchCommand(mxComponent, ".uno:OutlineUp", aArgs); + Scheduler::ProcessEventsToIdle(); + + CPPUNIT_ASSERT_EQUAL(OUString(u"One\nsix\nTwo\nThree\nFour\nFive"), xShape->getString()); + + dispatchCommand(mxComponent, ".uno:OutlineUp", aArgs); + Scheduler::ProcessEventsToIdle(); + + CPPUNIT_ASSERT_EQUAL(OUString(u"six\nOne\nTwo\nThree\nFour\nFive"), xShape->getString()); + + dispatchCommand(mxComponent, ".uno:OutlineDown", aArgs); + Scheduler::ProcessEventsToIdle(); + + CPPUNIT_ASSERT_EQUAL(OUString(u"One\nsix\nTwo\nThree\nFour\nFive"), xShape->getString()); + + dispatchCommand(mxComponent, ".uno:OutlineDown", aArgs); + Scheduler::ProcessEventsToIdle(); + + CPPUNIT_ASSERT_EQUAL(OUString(u"One\nTwo\nsix\nThree\nFour\nFive"), xShape->getString()); + + dispatchCommand(mxComponent, ".uno:OutlineDown", aArgs); + Scheduler::ProcessEventsToIdle(); + + CPPUNIT_ASSERT_EQUAL(OUString(u"One\nTwo\nThree\nsix\nFour\nFive"), xShape->getString()); + + dispatchCommand(mxComponent, ".uno:OutlineDown", aArgs); + Scheduler::ProcessEventsToIdle(); + + CPPUNIT_ASSERT_EQUAL(OUString(u"One\nTwo\nThree\nFour\nsix\nFive"), xShape->getString()); + + dispatchCommand(mxComponent, ".uno:OutlineDown", aArgs); + Scheduler::ProcessEventsToIdle(); + + CPPUNIT_ASSERT_EQUAL(OUString(u"One\nTwo\nThree\nFour\nFive\nsix"), xShape->getString()); +} + CPPUNIT_TEST_FIXTURE(SdUiImpressTest, testTdf141703) { mxComponent = loadFromDesktop("private:factory/simpress", @@ -548,22 +640,14 @@ Scheduler::ProcessEventsToIdle(); } - pXImpressDocument->postKeyEvent(LOK_KEYEVENT_KEYINPUT, 'A', 0); - pXImpressDocument->postKeyEvent(LOK_KEYEVENT_KEYUP, 'A', 0); - Scheduler::ProcessEventsToIdle(); + typeString(pXImpressDocument, "A"); // Move to A2 with Tab and write 'B' - pXImpressDocument->postKeyEvent(LOK_KEYEVENT_KEYINPUT, 0, KEY_TAB); - pXImpressDocument->postKeyEvent(LOK_KEYEVENT_KEYUP, 0, KEY_TAB); - Scheduler::ProcessEventsToIdle(); + typeKey(pXImpressDocument, KEY_TAB); - pXImpressDocument->postKeyEvent(LOK_KEYEVENT_KEYINPUT, 'B', 0); - pXImpressDocument->postKeyEvent(LOK_KEYEVENT_KEYUP, 'B', 0); - Scheduler::ProcessEventsToIdle(); + typeString(pXImpressDocument, "B"); - pXImpressDocument->postKeyEvent(LOK_KEYEVENT_KEYINPUT, 0, awt::Key::ESCAPE); - pXImpressDocument->postKeyEvent(LOK_KEYEVENT_KEYUP, 0, awt::Key::ESCAPE); - Scheduler::ProcessEventsToIdle(); + typeKey(pXImpressDocument, KEY_ESCAPE); sd::ViewShell* pViewShell = pXImpressDocument->GetDocShell()->GetViewShell(); SdPage* pActualPage = pViewShell->GetActualPage(); diff -Nru libreoffice-7.3.6/sdext/Executable_xpdfimport.mk libreoffice-7.3.7/sdext/Executable_xpdfimport.mk --- libreoffice-7.3.6/sdext/Executable_xpdfimport.mk 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sdext/Executable_xpdfimport.mk 2022-10-27 10:11:14.000000000 +0000 @@ -22,6 +22,10 @@ sdext/source/pdfimport/xpdfwrapper/wrapper_gpl \ )) +$(eval $(call gb_Executable_use_system_win32_libs,xpdfimport,\ + shell32 \ +)) + $(eval $(call gb_Executable_add_default_nativeres,xpdfimport)) ifneq ($(SYSTEM_POPPLER),) diff -Nru libreoffice-7.3.6/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx libreoffice-7.3.7/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx --- libreoffice-7.3.6/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -678,8 +678,15 @@ return; assert(state); - double* dashArray; int arrayLen; double startOffset; + int arrayLen; double startOffset; +#if POPPLER_CHECK_VERSION(22, 9, 0) + const std::vector &dash = state->getLineDash(&startOffset); + const double* dashArray = dash.data(); + arrayLen = dash.size(); +#else + double* dashArray; state->getLineDash(&dashArray, &arrayLen, &startOffset); +#endif printf( "updateLineDash" ); if( arrayLen && dashArray ) diff -Nru libreoffice-7.3.6/sfx2/source/doc/doctempl.cxx libreoffice-7.3.7/sfx2/source/doc/doctempl.cxx --- libreoffice-7.3.6/sfx2/source/doc/doctempl.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sfx2/source/doc/doctempl.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -492,7 +492,9 @@ u"" STR_TEMPLATE_NAME27_DEF, u"" STR_TEMPLATE_NAME28_DEF, u"" STR_TEMPLATE_NAME29_DEF, - u"" STR_TEMPLATE_NAME30_DEF + u"" STR_TEMPLATE_NAME30_DEF, + u"" STR_TEMPLATE_NAME31_DEF, + u"" STR_TEMPLATE_NAME32_DEF, }; TranslateId STR_TEMPLATE_NAME[] = @@ -526,7 +528,9 @@ STR_TEMPLATE_NAME27, STR_TEMPLATE_NAME28, STR_TEMPLATE_NAME29, - STR_TEMPLATE_NAME30 + STR_TEMPLATE_NAME30, + STR_TEMPLATE_NAME31, + STR_TEMPLATE_NAME32, }; static_assert(SAL_N_ELEMENTS(aTemplateNames) == SAL_N_ELEMENTS(STR_TEMPLATE_NAME)); diff -Nru libreoffice-7.3.6/sfx2/source/sidebar/Tools.cxx libreoffice-7.3.7/sfx2/source/sidebar/Tools.cxx --- libreoffice-7.3.6/sfx2/source/sidebar/Tools.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sfx2/source/sidebar/Tools.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -41,7 +41,7 @@ const OUString& rsHighContrastImageURL, const Reference& rxFrame) { - if (Theme::IsHighContrastMode()) + if (Theme::IsHighContrastMode() && !rsHighContrastImageURL.isEmpty()) return GetImage(rsHighContrastImageURL, rxFrame); else return GetImage(rsImageURL, rxFrame); diff -Nru libreoffice-7.3.6/solenv/bin/macosx-codesign-app-bundle libreoffice-7.3.7/solenv/bin/macosx-codesign-app-bundle --- libreoffice-7.3.6/solenv/bin/macosx-codesign-app-bundle 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/solenv/bin/macosx-codesign-app-bundle 2022-10-27 10:11:14.000000000 +0000 @@ -25,11 +25,14 @@ APP_BUNDLE="$1" entitlements= +application_identifier= if test -n "$ENABLE_MACOSX_SANDBOX"; then # In a sandboxed build executables need the entitlements entitlements="--entitlements $BUILDDIR/lo.xcent" + application_identifier=`/usr/libexec/PlistBuddy -c "print com.apple.application-identifier" $BUILDDIR/lo.xcent` + # remove the key from the entitlement - only use it when signing the whole bundle in the final step + /usr/libexec/PlistBuddy -c "delete com.apple.application-identifier" $BUILDDIR/lo.xcent # 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.... @@ -120,14 +123,13 @@ # CFBundleExecutable from Info.plist, i.e. soffice, plus the contents # of the Resources tree. # -# At this stage we also attach the entitlements in the sandboxing case -# -# Also omit some files from the Bundle's seal via the resource-rules -# (bootstraprc and similar that the user might adjust and image files) # See also https://developer.apple.com/library/mac/technotes/tn2206/ -id=`echo ${PRODUCTNAME} | tr ' ' '-'` - +if test -n "$ENABLE_MACOSX_SANDBOX" && test -n "$application_identifier"; then + # add back the application-identifier to the entitlements + # testflight/beta-testing won't work if that key is used when signing the other executables + /usr/libexec/PlistBuddy -c "add com.apple.application-identifier string $application_identifier" $BUILDDIR/lo.xcent +fi codesign --force --options=runtime --identifier="${MACOSX_BUNDLE_IDENTIFIER}" --sign "$MACOSX_CODESIGNING_IDENTITY" $entitlements "$APP_BUNDLE" || exit 1 exit 0 diff -Nru libreoffice-7.3.6/sources.ver libreoffice-7.3.7/sources.ver --- libreoffice-7.3.6/sources.ver 2022-09-02 16:23:42.000000000 +0000 +++ libreoffice-7.3.7/sources.ver 2022-10-27 10:13:17.000000000 +0000 @@ -1 +1 @@ -lo_sources_ver=7.3.6.2 +lo_sources_ver=7.3.7.2 diff -Nru libreoffice-7.3.6/svl/qa/unit/svl.cxx libreoffice-7.3.7/svl/qa/unit/svl.cxx --- libreoffice-7.3.6/svl/qa/unit/svl.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/svl/qa/unit/svl.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -48,6 +48,15 @@ return rStrm; } +namespace svl +{ +static std::ostream& operator<<(std::ostream& rStrm, const SharedString& string ) +{ + return rStrm << "(" << static_cast(string.getData()) << ")" << string.getString(); +} +} + + namespace { class Test : public CppUnit::TestFixture { @@ -62,6 +71,7 @@ void testSharedStringPool(); void testSharedStringPoolPurge(); void testSharedStringPoolPurgeBug1(); + void testSharedStringPoolEmptyString(); void testFdo60915(); void testI116701(); void testTdf103060(); @@ -80,6 +90,7 @@ CPPUNIT_TEST(testSharedStringPool); CPPUNIT_TEST(testSharedStringPoolPurge); CPPUNIT_TEST(testSharedStringPoolPurgeBug1); + CPPUNIT_TEST(testSharedStringPoolEmptyString); CPPUNIT_TEST(testFdo60915); CPPUNIT_TEST(testI116701); CPPUNIT_TEST(testTdf103060); @@ -363,18 +374,21 @@ { SvtSysLocale aSysLocale; svl::SharedStringPool aPool(aSysLocale.GetCharClass()); + size_t extraCount = aPool.getCount(); // internal items such as SharedString::getEmptyString() + size_t extraCountIgnoreCase = aPool.getCountIgnoreCase(); + aPool.intern("Andy"); aPool.intern("andy"); aPool.intern("ANDY"); - CPPUNIT_ASSERT_EQUAL_MESSAGE("Wrong string count.", static_cast(3), aPool.getCount()); - CPPUNIT_ASSERT_EQUAL_MESSAGE("Wrong case insensitive string count.", static_cast(1), aPool.getCountIgnoreCase()); + CPPUNIT_ASSERT_EQUAL_MESSAGE("Wrong string count.", 3+extraCount, aPool.getCount()); + CPPUNIT_ASSERT_EQUAL_MESSAGE("Wrong case insensitive string count.", 1+extraCountIgnoreCase, aPool.getCountIgnoreCase()); // Since no string objects referencing the pooled strings exist, purging - // the pool should empty it. + // the pool should empty it (except for internal items). aPool.purge(); - CPPUNIT_ASSERT_EQUAL(static_cast(0), aPool.getCount()); - CPPUNIT_ASSERT_EQUAL(static_cast(0), aPool.getCountIgnoreCase()); + CPPUNIT_ASSERT_EQUAL(extraCount, aPool.getCount()); + CPPUNIT_ASSERT_EQUAL(extraCountIgnoreCase, aPool.getCountIgnoreCase()); // Now, create string objects using optional so we can clear them std::optional pStr1 = aPool.intern("Andy"); @@ -382,37 +396,37 @@ std::optional pStr3 = aPool.intern("ANDY"); std::optional pStr4 = aPool.intern("Bruce"); - CPPUNIT_ASSERT_EQUAL(static_cast(5), aPool.getCount()); - CPPUNIT_ASSERT_EQUAL(static_cast(2), aPool.getCountIgnoreCase()); + CPPUNIT_ASSERT_EQUAL(5+extraCount, aPool.getCount()); + CPPUNIT_ASSERT_EQUAL(2+extraCountIgnoreCase, aPool.getCountIgnoreCase()); // This shouldn't purge anything. aPool.purge(); - CPPUNIT_ASSERT_EQUAL(static_cast(5), aPool.getCount()); - CPPUNIT_ASSERT_EQUAL(static_cast(2), aPool.getCountIgnoreCase()); + CPPUNIT_ASSERT_EQUAL(5+extraCount, aPool.getCount()); + CPPUNIT_ASSERT_EQUAL(2+extraCountIgnoreCase, aPool.getCountIgnoreCase()); // Delete one heap string object, and purge. That should purge one string. pStr1.reset(); aPool.purge(); - CPPUNIT_ASSERT_EQUAL(static_cast(4), aPool.getCount()); - CPPUNIT_ASSERT_EQUAL(static_cast(2), aPool.getCountIgnoreCase()); + CPPUNIT_ASSERT_EQUAL(4+extraCount, aPool.getCount()); + CPPUNIT_ASSERT_EQUAL(2+extraCountIgnoreCase, aPool.getCountIgnoreCase()); // Nothing changes, because the upper-string is still in the map pStr3.reset(); aPool.purge(); - CPPUNIT_ASSERT_EQUAL(static_cast(4), aPool.getCount()); - CPPUNIT_ASSERT_EQUAL(static_cast(2), aPool.getCountIgnoreCase()); + CPPUNIT_ASSERT_EQUAL(4+extraCount, aPool.getCount()); + CPPUNIT_ASSERT_EQUAL(2+extraCountIgnoreCase, aPool.getCountIgnoreCase()); // Again. pStr2.reset(); aPool.purge(); - CPPUNIT_ASSERT_EQUAL(static_cast(2), aPool.getCount()); - CPPUNIT_ASSERT_EQUAL(static_cast(1), aPool.getCountIgnoreCase()); + CPPUNIT_ASSERT_EQUAL(2+extraCount, aPool.getCount()); + CPPUNIT_ASSERT_EQUAL(1+extraCountIgnoreCase, aPool.getCountIgnoreCase()); // Delete 'Bruce' and purge. pStr4.reset(); aPool.purge(); - CPPUNIT_ASSERT_EQUAL(static_cast(0), aPool.getCount()); - CPPUNIT_ASSERT_EQUAL(static_cast(0), aPool.getCountIgnoreCase()); + CPPUNIT_ASSERT_EQUAL(extraCount, aPool.getCount()); + CPPUNIT_ASSERT_EQUAL(extraCountIgnoreCase, aPool.getCountIgnoreCase()); } void Test::testSharedStringPoolPurgeBug1() @@ -421,11 +435,26 @@ // purge() would de-reference a dangling pointer and consequently cause an ASAN failure. SvtSysLocale aSysLocale; svl::SharedStringPool aPool(aSysLocale.GetCharClass()); + size_t extraCount = aPool.getCount(); // internal items such as SharedString::getEmptyString() + size_t extraCountIgnoreCase = aPool.getCountIgnoreCase(); aPool.intern("Andy"); aPool.intern("andy"); aPool.purge(); - CPPUNIT_ASSERT_EQUAL(static_cast(0), aPool.getCount()); - CPPUNIT_ASSERT_EQUAL(static_cast(0), aPool.getCountIgnoreCase()); + CPPUNIT_ASSERT_EQUAL(extraCount, aPool.getCount()); + CPPUNIT_ASSERT_EQUAL(extraCountIgnoreCase, aPool.getCountIgnoreCase()); +} + +void Test::testSharedStringPoolEmptyString() +{ + // Make sure SharedString::getEmptyString() is in the pool and matches empty strings. + SvtSysLocale aSysLocale; + svl::SharedStringPool aPool(aSysLocale.GetCharClass()); + aPool.intern(""); + CPPUNIT_ASSERT_EQUAL(SharedString::getEmptyString(), aPool.intern("")); + CPPUNIT_ASSERT_EQUAL(SharedString::getEmptyString(), aPool.intern(OUString())); + // And it should still work even after purging. + aPool.purge(); + CPPUNIT_ASSERT_EQUAL(SharedString::getEmptyString(), aPool.intern(OUString())); } void Test::checkPreviewString(SvNumberFormatter& aFormatter, diff -Nru libreoffice-7.3.6/svl/source/misc/sharedstringpool.cxx libreoffice-7.3.7/svl/source/misc/sharedstringpool.cxx --- libreoffice-7.3.6/svl/source/misc/sharedstringpool.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/svl/source/misc/sharedstringpool.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -70,6 +70,9 @@ SharedStringPool::SharedStringPool(const CharClass& rCharClass) : mpImpl(new Impl(rCharClass)) { + // make sure the one empty string instance is shared in this pool as well + intern(OUString()); + assert(intern(OUString()) == SharedString::getEmptyString()); } SharedStringPool::~SharedStringPool() {} diff -Nru libreoffice-7.3.6/svx/source/svdraw/svdoole2.cxx libreoffice-7.3.7/svx/source/svdraw/svdoole2.cxx --- libreoffice-7.3.6/svx/source/svdraw/svdoole2.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/svx/source/svdraw/svdoole2.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -1470,8 +1470,10 @@ // objects' visual area. The scaling will not change, but it might exist already and must // be used in calculations MapUnit aMapUnit = VCLUnoHelper::UnoEmbed2VCLMapUnit( mpImpl->mxObjRef->getMapUnit( GetAspect() ) ); - Size aVisSize( static_cast( Fraction( maRect.GetWidth() ) / aScaleWidth ), - static_cast( Fraction( maRect.GetHeight() ) / aScaleHeight ) ); + Size aVisSize; + if (sal_Int32(aScaleWidth) != 0 && sal_Int32(aScaleHeight) != 0) // avoid div by zero + aVisSize = Size( static_cast( Fraction( maRect.GetWidth() ) / aScaleWidth ), + static_cast( Fraction( maRect.GetHeight() ) / aScaleHeight ) ); aVisSize = OutputDevice::LogicToLogic( aVisSize, diff -Nru libreoffice-7.3.6/sw/inc/crsrsh.hxx libreoffice-7.3.7/sw/inc/crsrsh.hxx --- libreoffice-7.3.6/sw/inc/crsrsh.hxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sw/inc/crsrsh.hxx 2022-10-27 10:11:14.000000000 +0000 @@ -45,6 +45,7 @@ class SfxItemSet; class SfxPoolItem; +class SwCallLink; class SwContentFrame; class SwUnoCursor; class SwFormatField; @@ -434,6 +435,7 @@ * stack * @return if there was one on the stack, otherwise */ + bool Pop(PopMode, ::std::unique_ptr pLink); bool Pop(PopMode); /* * Combine 2 Cursors. diff -Nru libreoffice-7.3.6/sw/qa/extras/htmlexport/htmlexport.cxx libreoffice-7.3.7/sw/qa/extras/htmlexport/htmlexport.cxx --- libreoffice-7.3.6/sw/qa/extras/htmlexport/htmlexport.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sw/qa/extras/htmlexport/htmlexport.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -2237,6 +2237,63 @@ assertXPath(pDoc, "/html/body/p/img", "height", "auto"); } +CPPUNIT_TEST_FIXTURE(HtmlExportTest, testTdf114769) +{ + // Create document from scratch since relative urls to filesystem can be replaced + // by absolute during save/load + SwDoc* pDoc = createSwDoc(); + SwWrtShell* pWrtShell = pDoc->GetDocShell()->GetWrtShell(); + pWrtShell->Insert("Hyperlink1"); + pWrtShell->SplitNode(); + pWrtShell->Insert("Hyperlink2"); + pWrtShell->SplitNode(); + pWrtShell->Insert("Hyperlink3"); + pWrtShell->SplitNode(); + pWrtShell->Insert("Hyperlink4"); + pWrtShell->SplitNode(); + pWrtShell->Insert("Hyperlink5"); + pWrtShell->SplitNode(); + + // Normal external URL + uno::Reference xRun(getRun(getParagraph(1), 1), uno::UNO_QUERY); + xRun->setPropertyValue("HyperLinkURL", uno::Any(OUString("http://libreoffice.org/"))); + + // Bookmark reference + xRun.set(getRun(getParagraph(2), 1), uno::UNO_QUERY); + xRun->setPropertyValue("HyperLinkURL", uno::Any(OUString("#some_bookmark"))); + + // Filesystem absolute link + xRun.set(getRun(getParagraph(3), 1), uno::UNO_QUERY); + xRun->setPropertyValue("HyperLinkURL", uno::Any(OUString("C:\\test.txt"))); + + // Filesystem relative link + xRun.set(getRun(getParagraph(4), 1), uno::UNO_QUERY); + xRun->setPropertyValue("HyperLinkURL", uno::Any(OUString("..\\..\\test.odt"))); + + // Filesystem relative link + xRun.set(getRun(getParagraph(5), 1), uno::UNO_QUERY); + xRun->setPropertyValue("HyperLinkURL", uno::Any(OUString(".\\another.odt"))); + + // Export + uno::Reference xStorable(mxComponent, uno::UNO_QUERY); + uno::Sequence aStoreProperties + = { comphelper::makePropertyValue("FilterName", OUString("HTML (StarWriter)")) }; + xStorable->storeToURL(maTempFile.GetURL(), aStoreProperties); + + htmlDocUniquePtr pHtmlDoc = parseHtml(maTempFile); + CPPUNIT_ASSERT(pHtmlDoc); + + CPPUNIT_ASSERT_EQUAL(OUString("http://libreoffice.org/"), + getXPath(pHtmlDoc, "/html/body/p[1]/a", "href")); + CPPUNIT_ASSERT_EQUAL(OUString("#some_bookmark"), + getXPath(pHtmlDoc, "/html/body/p[2]/a", "href")); + CPPUNIT_ASSERT_EQUAL(OUString("C:\\test.txt"), getXPath(pHtmlDoc, "/html/body/p[3]/a", "href")); + CPPUNIT_ASSERT_EQUAL(OUString("..\\..\\test.odt"), + getXPath(pHtmlDoc, "/html/body/p[4]/a", "href")); + CPPUNIT_ASSERT_EQUAL(OUString(".\\another.odt"), + getXPath(pHtmlDoc, "/html/body/p[5]/a", "href")); +} + CPPUNIT_PLUGIN_IMPLEMENT(); /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ Binary files /tmp/tmp7lj43w29/QEYlBQyeWR/libreoffice-7.3.6/sw/qa/extras/odfexport/data/table-in-frame-in-table-in-header-base.odt and /tmp/tmp7lj43w29/sw5eMqaWXV/libreoffice-7.3.7/sw/qa/extras/odfexport/data/table-in-frame-in-table-in-header-base.odt differ Binary files /tmp/tmp7lj43w29/QEYlBQyeWR/libreoffice-7.3.6/sw/qa/extras/odfexport/data/tdf151100.docx and /tmp/tmp7lj43w29/sw5eMqaWXV/libreoffice-7.3.7/sw/qa/extras/odfexport/data/tdf151100.docx differ diff -Nru libreoffice-7.3.6/sw/qa/extras/odfexport/odfexport2.cxx libreoffice-7.3.7/sw/qa/extras/odfexport/odfexport2.cxx --- libreoffice-7.3.6/sw/qa/extras/odfexport/odfexport2.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sw/qa/extras/odfexport/odfexport2.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -35,6 +35,20 @@ }; +CPPUNIT_TEST_FIXTURE(Test, tdf151100) +{ + // Similar to tdf135942 + + loadAndReload("tdf151100.docx"); + // All table autostyles should be collected, including nested, and must not crash. + + CPPUNIT_ASSERT_EQUAL(1, getPages()); + + xmlDocUniquePtr pXmlDoc = parseExport("styles.xml"); + + assertXPath(pXmlDoc, "/office:document-styles/office:automatic-styles/style:style[@style:family='table']", 1); +} + DECLARE_ODFEXPORT_TEST(testTdf52065_centerTabs, "testTdf52065_centerTabs.odt") { CPPUNIT_ASSERT_EQUAL(1, getPages()); diff -Nru libreoffice-7.3.6/sw/qa/extras/odfexport/odfexport.cxx libreoffice-7.3.7/sw/qa/extras/odfexport/odfexport.cxx --- libreoffice-7.3.6/sw/qa/extras/odfexport/odfexport.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sw/qa/extras/odfexport/odfexport.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -3154,6 +3154,20 @@ assertXPath(pXmlDoc, "/office:document-styles/office:automatic-styles/style:style[@style:family='table']", 2); } +CPPUNIT_TEST_FIXTURE(Test, tdf150927) +{ + // Similar to tdf135942 + + loadAndReload("table-in-frame-in-table-in-header-base.odt"); + // All table autostyles should be collected, including nested, and must not crash. + + CPPUNIT_ASSERT_EQUAL(1, getPages()); + + xmlDocUniquePtr pXmlDoc = parseExport("styles.xml"); + + assertXPath(pXmlDoc, "/office:document-styles/office:automatic-styles/style:style[@style:family='table']", 2); +} + DECLARE_ODFEXPORT_TEST(testGutterLeft, "gutter-left.odt") { CPPUNIT_ASSERT_EQUAL(1, getPages()); diff -Nru libreoffice-7.3.6/sw/qa/extras/uiwriter/data/tdf147507.fodt libreoffice-7.3.7/sw/qa/extras/uiwriter/data/tdf147507.fodt --- libreoffice-7.3.6/sw/qa/extras/uiwriter/data/tdf147507.fodt 1970-01-01 00:00:00.000000000 +0000 +++ libreoffice-7.3.7/sw/qa/extras/uiwriter/data/tdf147507.fodt 2022-10-27 10:11:14.000000000 +0000 @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Author + 2004-01-12T03:00:00 + + + + + + + Author + 2004-01-05T21:45:00 + + + + + a + + + + + + + + + + + + + + s + + + diff -Nru libreoffice-7.3.6/sw/qa/extras/uiwriter/uiwriter2.cxx libreoffice-7.3.7/sw/qa/extras/uiwriter/uiwriter2.cxx --- libreoffice-7.3.6/sw/qa/extras/uiwriter/uiwriter2.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sw/qa/extras/uiwriter/uiwriter2.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -2070,6 +2070,25 @@ CPPUNIT_ASSERT_EQUAL(sal_Int32(0), xTables->getCount()); } +CPPUNIT_TEST_FIXTURE(SwUiWriterTest2, testTdf147507) +{ + SwDoc* pDoc = createSwDoc(DATA_DIRECTORY, "tdf147507.fodt"); + + // turn on red-lining 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())); + + // select all, backspace and reject all crashed + dispatchCommand(mxComponent, ".uno:SelectAll", {}); + dispatchCommand(mxComponent, ".uno:SwBackSpace", {}); + dispatchCommand(mxComponent, ".uno:RejectAllTrackedChanges", {}); +} + CPPUNIT_TEST_FIXTURE(SwUiWriterTest2, testTdf119019) { // check handling of overlapping redlines diff -Nru libreoffice-7.3.6/sw/source/core/crsr/crsrsh.cxx libreoffice-7.3.7/sw/source/core/crsr/crsrsh.cxx --- libreoffice-7.3.6/sw/source/core/crsr/crsrsh.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sw/source/core/crsr/crsrsh.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -2260,7 +2260,14 @@ */ bool SwCursorShell::Pop(PopMode const eDelete) { - SwCallLink aLk( *this ); // watch Cursor-Moves; call Link if needed + ::std::unique_ptr pLink(::std::make_unique(*this)); // watch Cursor-Moves; call Link if needed + return Pop(eDelete, ::std::move(pLink)); +} + +bool SwCursorShell::Pop(PopMode const eDelete, + [[maybe_unused]] ::std::unique_ptr const pLink) +{ + assert(pLink); // parameter exists only to be deleted before return // are there any left? if (nullptr == m_pStackCursor) diff -Nru libreoffice-7.3.6/sw/source/core/doc/docredln.cxx libreoffice-7.3.7/sw/source/core/doc/docredln.cxx --- libreoffice-7.3.6/sw/source/core/doc/docredln.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sw/source/core/doc/docredln.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -909,7 +909,11 @@ { aPam.GetPoint()->nNode--; SwContentNode* pNode = aPam.GetPoint()->nNode.GetNode().GetContentNode(); - aPam.GetPoint()->nContent.Assign( pNode, pNode->Len() ); + if ( pNode ) + aPam.GetPoint()->nContent.Assign( pNode, pNode->Len() ); + else + // tdf#147507 set it back to a content node to avoid of crashing + aPam.GetPoint()->nNode++; } else if (aPam.GetPoint()->nNode < aPam.GetMark()->nNode) { diff -Nru libreoffice-7.3.6/sw/source/core/docnode/ndtbl1.cxx libreoffice-7.3.7/sw/source/core/docnode/ndtbl1.cxx --- libreoffice-7.3.6/sw/source/core/docnode/ndtbl1.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sw/source/core/docnode/ndtbl1.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -1626,7 +1626,8 @@ } fTotalWish += aWish[i]; } - const sal_uInt16 nEqualWidth = nSelectedWidth / nCols; + assert(nCols); + const sal_uInt16 nEqualWidth = nCols ? nSelectedWidth / nCols : 0; // bBalance: Distribute the width evenly for (sal_uInt16 & rn : aWish) if ( rn && bBalance ) diff -Nru libreoffice-7.3.6/sw/source/core/docnode/node.cxx libreoffice-7.3.7/sw/source/core/docnode/node.cxx --- libreoffice-7.3.6/sw/source/core/docnode/node.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sw/source/core/docnode/node.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -1266,7 +1266,7 @@ ChkCondColl(static_cast(pNewColl)); SwFormatChg aTmp1( pOldColl ); SwFormatChg aTmp2( pNewColl ); - SwClientNotify( *this, sw::LegacyModifyHint(&aTmp1, &aTmp2) ); + CallSwClientNotify( sw::LegacyModifyHint(&aTmp1, &aTmp2) ); } } InvalidateInSwCache(RES_ATTRSET_CHG); diff -Nru libreoffice-7.3.6/sw/source/filter/html/wrthtml.cxx libreoffice-7.3.7/sw/source/filter/html/wrthtml.cxx --- libreoffice-7.3.6/sw/source/filter/html/wrthtml.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sw/source/filter/html/wrthtml.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -1266,7 +1266,8 @@ { // Link is not started from "#", so looks like external link. Encode this URL. INetURLObject aURL(sURL); - sURL = aURL.GetMainURL(INetURLObject::DecodeMechanism::NONE); + if (!aURL.HasError()) + sURL = aURL.GetMainURL(INetURLObject::DecodeMechanism::NONE); } return URIHelper::simpleNormalizedMakeRelative( GetBaseURL(), sURL ); } diff -Nru libreoffice-7.3.6/sw/source/filter/xml/xmltble.cxx libreoffice-7.3.7/sw/source/filter/xml/xmltble.cxx --- libreoffice-7.3.6/sw/source/filter/xml/xmltble.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sw/source/filter/xml/xmltble.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -1209,6 +1209,30 @@ } } +void SwXMLTextParagraphExport::CollectTableLinesAutoStyles(const SwTableLines& rLines, + SwFrameFormat& rFormat, bool _bProgress) +{ + // Follow SwXMLExport::ExportTableLines/ExportTableLine/ExportTableBox + for (const SwTableLine* pLine : rLines) + { + for (SwTableBox* pBox : pLine->GetTabBoxes()) + { + if (pBox->getRowSpan() <= 0) + continue; + if (pBox->GetSttNd()) + { + if (rtl::Reference xCell = SwXCell::CreateXCell(&rFormat, pBox)) + exportText(xCell, true /*bAutoStyles*/, _bProgress, true /*bExportParagraph*/); + } + else + { + // no start node -> merged cells: export subtable in cell + CollectTableLinesAutoStyles(pBox->GetTabLines(), rFormat, _bProgress); + } + } + } +} + void SwXMLTextParagraphExport::exportTable( const Reference < XTextContent > & rTextContent, bool bAutoStyles, bool _bProgress ) @@ -1245,21 +1269,7 @@ maTableNodes.push_back(pTableNd); m_TableFormats.emplace(pTableNd, ::std::make_pair(SwXMLTextParagraphExport::FormatMap(), SwXMLTextParagraphExport::FormatMap())); // Collect all tables inside cells of this table, too - const auto aCellNames = pXTable->getCellNames(); - for (const OUString& rCellName : aCellNames) - { - css::uno::Reference xCell( - pXTable->getCellByName(rCellName), css::uno::UNO_QUERY); - if (!xCell) - continue; - auto xEnumeration = xCell->createEnumeration(); - while (xEnumeration->hasMoreElements()) - { - if (css::uno::Reference xInnerTable{ - xEnumeration->nextElement(), css::uno::UNO_QUERY }) - exportTable(xInnerTable, bAutoStyles, _bProgress); - } - } + CollectTableLinesAutoStyles(pTable->GetTabLines(), *pFormat, _bProgress); } } else diff -Nru libreoffice-7.3.6/sw/source/filter/xml/xmltexte.hxx libreoffice-7.3.7/sw/source/filter/xml/xmltexte.hxx --- libreoffice-7.3.6/sw/source/filter/xml/xmltexte.hxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sw/source/filter/xml/xmltexte.hxx 2022-10-27 10:11:14.000000000 +0000 @@ -32,6 +32,7 @@ class SvXMLAutoStylePoolP; class SwNoTextNode; class SwTableNode; +class SwTableLines; namespace com::sun::star::style { class XStyle; } class SwXMLTextParagraphExport : public XMLTextParagraphExport @@ -50,6 +51,9 @@ static SwNoTextNode *GetNoTextNode( const css::uno::Reference < css::beans::XPropertySet >& rPropSet ); + void CollectTableLinesAutoStyles(const SwTableLines& rLines, SwFrameFormat& rFormat, + bool bProgress); + protected: virtual void _collectTextEmbeddedAutoStyles( const css::uno::Reference< css::beans::XPropertySet > & rPropSet ) override; diff -Nru libreoffice-7.3.6/sw/source/ui/chrdlg/numpara.cxx libreoffice-7.3.7/sw/source/ui/chrdlg/numpara.cxx --- libreoffice-7.3.6/sw/source/ui/chrdlg/numpara.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sw/source/ui/chrdlg/numpara.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -307,10 +307,15 @@ } // Internal: Perform functions through the Dispatcher -bool SwParagraphNumTabPage::ExecuteEditNumStyle_Impl( +void SwParagraphNumTabPage::ExecuteEditNumStyle_Impl( sal_uInt16 nId, const OUString &rStr, SfxStyleFamily nFamily) { - SfxDispatcher &rDispatcher = *SfxViewShell::Current()->GetDispatcher(); + SfxViewShell* pViewShell = SfxViewShell::Current(); + + if( !pViewShell) + return; + + SfxDispatcher* pDispatcher = pViewShell->GetDispatcher(); SfxStringItem aItem(nId, rStr); SfxUInt16Item aFamily(SID_STYLE_FAMILY, static_cast(nFamily)); const SfxPoolItem* pItems[ 3 ]; @@ -329,12 +334,9 @@ pInternalItems[ 0 ] = &aDialogParent; pInternalItems[ 1 ] = nullptr; - const SfxPoolItem* pItem = rDispatcher.Execute( + pDispatcher->Execute( nId, SfxCallMode::SYNCHRON | SfxCallMode::RECORD, pItems, 0, pInternalItems); - - return pItem != nullptr; - } IMPL_LINK(SwParagraphNumTabPage, StyleHdl_Impl, weld::ComboBox&, rBox, void) diff -Nru libreoffice-7.3.6/sw/source/ui/misc/pggrid.cxx libreoffice-7.3.7/sw/source/ui/misc/pggrid.cxx --- libreoffice-7.3.6/sw/source/ui/misc/pggrid.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sw/source/ui/misc/pggrid.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -460,15 +460,18 @@ IMPL_LINK(SwTextGridPage, GridTypeHdl, weld::Toggleable&, rButton, void) { - bool bEnable = m_xNoGridRB.get() != &rButton; - m_xLayoutFL->set_sensitive(bEnable); - m_xDisplayFL->set_sensitive(bEnable); + if (!rButton.get_active()) + return; + + const bool bNoGrid = m_xNoGridRB.get() == &rButton; + m_xLayoutFL->set_sensitive(!bNoGrid); + m_xDisplayFL->set_sensitive(!bNoGrid); //one special case - if (bEnable) + if (!bNoGrid) DisplayGridHdl(*m_xDisplayCB); - bEnable = m_xCharsGridRB.get() == &rButton; + bool bEnable = m_xCharsGridRB.get() == &rButton; m_xSnapToCharsCB->set_sensitive(bEnable); bEnable = m_xLinesGridRB.get() == &rButton; @@ -481,6 +484,10 @@ m_xCharWidthMF->set_sensitive(false); } + //recalc which dependencies are sensitive + if (!bNoGrid) + TextSizeChangedHdl(*m_xTextSizeMF); + GridModifyHdl(); } diff -Nru libreoffice-7.3.6/sw/source/uibase/docvw/edtwin.cxx libreoffice-7.3.7/sw/source/uibase/docvw/edtwin.cxx --- libreoffice-7.3.6/sw/source/uibase/docvw/edtwin.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sw/source/uibase/docvw/edtwin.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -140,6 +140,7 @@ #include #include +#include "../../core/crsr/callnk.hxx" #include #include #include @@ -6479,13 +6480,15 @@ // around the visible cursor. TextFrameIndex const nPos(rSh.GetCursorPointAsViewIndex()); + // store shell state *before* Push + ::std::unique_ptr pLink(::std::make_unique(rSh)); rSh.Push(); rSh.HideCursor(); rSh.GoStartSentence(); TextFrameIndex const nStartPos(rSh.GetCursorPointAsViewIndex()); - rSh.Pop(SwCursorShell::PopMode::DeleteCurrent); + rSh.Pop(SwCursorShell::PopMode::DeleteCurrent, ::std::move(pLink)); rSh.ShowCursor(); if (bUnLockView) diff -Nru libreoffice-7.3.6/sw/source/uibase/inc/numpara.hxx libreoffice-7.3.7/sw/source/uibase/inc/numpara.hxx --- libreoffice-7.3.6/sw/source/uibase/inc/numpara.hxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sw/source/uibase/inc/numpara.hxx 2022-10-27 10:11:14.000000000 +0000 @@ -58,7 +58,7 @@ static const WhichRangesContainer aPageRg; - bool ExecuteEditNumStyle_Impl(sal_uInt16 nId, const OUString& rStr, + void ExecuteEditNumStyle_Impl(sal_uInt16 nId, const OUString& rStr, SfxStyleFamily nFamily); public: diff -Nru libreoffice-7.3.6/sw/source/uibase/inc/wrtsh.hxx libreoffice-7.3.7/sw/source/uibase/inc/wrtsh.hxx --- libreoffice-7.3.6/sw/source/uibase/inc/wrtsh.hxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sw/source/uibase/inc/wrtsh.hxx 2022-10-27 10:11:14.000000000 +0000 @@ -143,6 +143,7 @@ // is there a text- or frameselection? bool HasSelection() const { return SwCursorShell::HasSelection() || IsMultiSelection() || IsSelFrameMode() || IsObjSelected(); } + bool Pop(SwCursorShell::PopMode, ::std::unique_ptr const pLink); bool Pop(SwCursorShell::PopMode = SwCursorShell::PopMode::DeleteStack); void EnterStdMode(); diff -Nru libreoffice-7.3.6/sw/source/uibase/wrtsh/wrtsh1.cxx libreoffice-7.3.7/sw/source/uibase/wrtsh/wrtsh1.cxx --- libreoffice-7.3.6/sw/source/uibase/wrtsh/wrtsh1.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sw/source/uibase/wrtsh/wrtsh1.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -104,6 +104,7 @@ #include #include +#include "../../core/crsr/callnk.hxx" #include #include @@ -1853,7 +1854,13 @@ bool SwWrtShell::Pop(SwCursorShell::PopMode const eDelete) { - bool bRet = SwCursorShell::Pop(eDelete); + ::std::unique_ptr pLink(::std::make_unique(*this)); + return Pop(eDelete, ::std::move(pLink)); +} + +bool SwWrtShell::Pop(SwCursorShell::PopMode const eDelete, ::std::unique_ptr pLink) +{ + bool bRet = SwCursorShell::Pop(eDelete, ::std::move(pLink)); if( bRet && IsSelection() ) { if (!IsAddMode()) diff -Nru libreoffice-7.3.6/sysui/desktop/macosx/Info.plist.in libreoffice-7.3.7/sysui/desktop/macosx/Info.plist.in --- libreoffice-7.3.6/sysui/desktop/macosx/Info.plist.in 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/sysui/desktop/macosx/Info.plist.in 2022-10-27 10:11:14.000000000 +0000 @@ -1961,6 +1961,10 @@ NSContactsUsageDescription You can add your contacts as a data source for mail merge or similar operations. + DTXcodeBuild + @MACOSX_XCODE_BUILD_VERSION@ + DTSDKBuild + @MACOSX_SDK_BUILD_VERSION@ Binary files /tmp/tmp7lj43w29/QEYlBQyeWR/libreoffice-7.3.6/tarballs/curl-7.83.1.tar.xz and /tmp/tmp7lj43w29/sw5eMqaWXV/libreoffice-7.3.7/tarballs/curl-7.83.1.tar.xz differ Binary files /tmp/tmp7lj43w29/QEYlBQyeWR/libreoffice-7.3.6/tarballs/curl-7.86.0.tar.xz and /tmp/tmp7lj43w29/sw5eMqaWXV/libreoffice-7.3.7/tarballs/curl-7.86.0.tar.xz differ Binary files /tmp/tmp7lj43w29/QEYlBQyeWR/libreoffice-7.3.6/tarballs/expat-2.4.6.tar.xz and /tmp/tmp7lj43w29/sw5eMqaWXV/libreoffice-7.3.7/tarballs/expat-2.4.6.tar.xz differ Binary files /tmp/tmp7lj43w29/QEYlBQyeWR/libreoffice-7.3.6/tarballs/expat-2.4.9.tar.xz and /tmp/tmp7lj43w29/sw5eMqaWXV/libreoffice-7.3.7/tarballs/expat-2.4.9.tar.xz differ diff -Nru libreoffice-7.3.6/tarballs/fetch.log libreoffice-7.3.7/tarballs/fetch.log --- libreoffice-7.3.6/tarballs/fetch.log 2022-08-18 19:15:40.000000000 +0000 +++ libreoffice-7.3.7/tarballs/fetch.log 2022-10-27 11:02:00.000000000 +0000 @@ -1,1537 +1,1538 @@ -Do 18. Aug 20:51:28 CEST 2022 ---2022-08-18 20:51:28-- https://dev-www.libreoffice.org/src/libabw-0.1.3.tar.xz +Do 27. Okt 12:53:01 CEST 2022 +--2022-10-27 12:53:01-- https://dev-www.libreoffice.org/src/libabw-0.1.3.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 318808 (311K) [application/octet-stream] Wird in ‘./libabw-0.1.3.tar.xz’ gespeichert. - 0K .... 100% 195K=1,6s + 0K .... 100% 551K=0,6s -2022-08-18 20:51:34 (195 KB/s) - ‘./libabw-0.1.3.tar.xz’ gespeichert [318808/318808] +2022-10-27 12:53:05 (551 KB/s) - ‘./libabw-0.1.3.tar.xz’ gespeichert [318808/318808] ---2022-08-18 20:51:34-- https://dev-www.libreoffice.org/src/apr-1.5.2.tar.gz +--2022-10-27 12:53:05-- https://dev-www.libreoffice.org/src/apr-1.5.2.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1031613 (1007K) [application/octet-stream] Wird in ‘./apr-1.5.2.tar.gz’ gespeichert. - 0K ........ ....... 100% 374K=2,7s + 0K ........ ....... 100% 971K=1,0s -2022-08-18 20:51:37 (374 KB/s) - ‘./apr-1.5.2.tar.gz’ gespeichert [1031613/1031613] +2022-10-27 12:53:06 (971 KB/s) - ‘./apr-1.5.2.tar.gz’ gespeichert [1031613/1031613] ---2022-08-18 20:51:37-- https://dev-www.libreoffice.org/src/apr-util-1.5.4.tar.gz +--2022-10-27 12:53:06-- https://dev-www.libreoffice.org/src/apr-util-1.5.4.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 874044 (854K) [application/octet-stream] Wird in ‘./apr-util-1.5.4.tar.gz’ gespeichert. - 0K ........ ..... 100% 599K=1,4s + 0K ........ ..... 100% 1,29M=0,6s -2022-08-18 20:51:38 (599 KB/s) - ‘./apr-util-1.5.4.tar.gz’ gespeichert [874044/874044] +2022-10-27 12:53:07 (1,29 MB/s) - ‘./apr-util-1.5.4.tar.gz’ gespeichert [874044/874044] ---2022-08-18 20:51:38-- https://dev-www.libreoffice.org/src/boost_1_77_0.tar.xz +--2022-10-27 12:53:07-- https://dev-www.libreoffice.org/src/boost_1_77_0.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 17548708 (17M) [application/octet-stream] Wird in ‘./boost_1_77_0.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 17% 498K 28s - 3072K ........ ........ ........ ........ ........ ........ 35% 566K 21s - 6144K ........ ........ ........ ........ ........ ........ 53% 469K 16s - 9216K ........ ........ ........ ........ ........ ........ 71% 370K 10s - 12288K ........ ........ ........ ........ ........ ........ 89% 428K 4s - 15360K ........ ........ ........ ... 100% 466K=37s + 0K ........ ........ ........ ........ ........ ........ 17% 1,08M 13s + 3072K ........ ........ ........ ........ ........ ........ 35% 1,01M 10s + 6144K ........ ........ ........ ........ ........ ........ 53% 843K 8s + 9216K ........ ........ ........ ........ ........ ........ 71% 991K 5s + 12288K ........ ........ ........ ........ ........ ........ 89% 1,44M 2s + 15360K ........ ........ ........ ... 100% 1,26M=16s -2022-08-18 20:52:16 (458 KB/s) - ‘./boost_1_77_0.tar.xz’ gespeichert [17548708/17548708] +2022-10-27 12:53:23 (1,05 MB/s) - ‘./boost_1_77_0.tar.xz’ gespeichert [17548708/17548708] ---2022-08-18 20:52:16-- https://dev-www.libreoffice.org/src/box2d-2.3.1.tar.gz +--2022-10-27 12:53:23-- https://dev-www.libreoffice.org/src/box2d-2.3.1.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1553252 (1,5M) [application/octet-stream] Wird in ‘./box2d-2.3.1.tar.gz’ gespeichert. - 0K ........ ........ ....... 100% 370K=4,1s + 0K ........ ........ ....... 100% 1,13M=1,3s -2022-08-18 20:52:21 (370 KB/s) - ‘./box2d-2.3.1.tar.gz’ gespeichert [1553252/1553252] +2022-10-27 12:53:25 (1,13 MB/s) - ‘./box2d-2.3.1.tar.gz’ gespeichert [1553252/1553252] ---2022-08-18 20:52:21-- https://dev-www.libreoffice.org/src/breakpad-b324760c7f53667af128a6b77b790323da04fcb9.tar.xz +--2022-10-27 12:53:25-- https://dev-www.libreoffice.org/src/breakpad-b324760c7f53667af128a6b77b790323da04fcb9.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 5000956 (4,8M) [application/octet-stream] Wird in ‘./breakpad-b324760c7f53667af128a6b77b790323da04fcb9.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 62% 344K 5s - 3072K ........ ........ ........ .... 100% 365K=14s + 0K ........ ........ ........ ........ ........ ........ 62% 861K 2s + 3072K ........ ........ ........ .... 100% 1,18M=5,1s -2022-08-18 20:52:35 (351 KB/s) - ‘./breakpad-b324760c7f53667af128a6b77b790323da04fcb9.tar.xz’ gespeichert [5000956/5000956] +2022-10-27 12:53:30 (964 KB/s) - ‘./breakpad-b324760c7f53667af128a6b77b790323da04fcb9.tar.xz’ gespeichert [5000956/5000956] ---2022-08-18 20:52:35-- https://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip +--2022-10-27 12:53:30-- https://dev-www.libreoffice.org/src/beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1997625 (1,9M) [application/zip] Wird in ‘./beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip’ gespeichert. - 0K ........ ........ ........ ...... 100% 614K=3,2s + 0K ........ ........ ........ ...... 100% 687K=2,8s -2022-08-18 20:52:38 (614 KB/s) - ‘./beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip’ gespeichert [1997625/1997625] +2022-10-27 12:53:33 (687 KB/s) - ‘./beeca87be45ec87d241ddd0e1bad80c1-bsh-2.0b6-src.zip’ gespeichert [1997625/1997625] ---2022-08-18 20:52:38-- https://dev-www.libreoffice.org/src/bzip2-1.0.8.tar.gz +--2022-10-27 12:53:34-- https://dev-www.libreoffice.org/src/bzip2-1.0.8.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 810029 (791K) [application/octet-stream] Wird in ‘./bzip2-1.0.8.tar.gz’ gespeichert. - 0K ........ .... 100% 466K=1,7s + 0K ........ .... 100% 676K=1,2s -2022-08-18 20:52:40 (466 KB/s) - ‘./bzip2-1.0.8.tar.gz’ gespeichert [810029/810029] +2022-10-27 12:53:35 (676 KB/s) - ‘./bzip2-1.0.8.tar.gz’ gespeichert [810029/810029] ---2022-08-18 20:52:40-- https://dev-www.libreoffice.org/src/cairo-1.17.4.tar.xz +--2022-10-27 12:53:35-- https://dev-www.libreoffice.org/src/cairo-1.17.4.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 41834076 (40M) [application/octet-stream] Wird in ‘./cairo-1.17.4.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 7% 446K 85s - 3072K ........ ........ ........ ........ ........ ........ 15% 442K 78s - 6144K ........ ........ ........ ........ ........ ........ 22% 477K 70s - 9216K ........ ........ ........ ........ ........ ........ 30% 557K 60s - 12288K ........ ........ ........ ........ ........ ........ 37% 462K 54s - 15360K ........ ........ ........ ........ ........ ........ 45% 423K 48s - 18432K ........ ........ ........ ........ ........ ........ 52% 304K 45s - 21504K ........ ........ ........ ........ ........ ........ 60% 602K 36s - 24576K ........ ........ ........ ........ ........ ........ 67% 590K 29s - 27648K ........ ........ ........ ........ ........ ........ 75% 494K 22s - 30720K ........ ........ ........ ........ ........ ........ 82% 424K 15s - 33792K ........ ........ ........ ........ ........ ........ 90% 409K 9s - 36864K ........ ........ ........ ........ ........ ........ 97% 434K 2s - 39936K ........ ...... 100% 343K=91s + 0K ........ ........ ........ ........ ........ ........ 7% 979K 39s + 3072K ........ ........ ........ ........ ........ ........ 15% 783K 40s + 6144K ........ ........ ........ ........ ........ ........ 22% 777K 38s + 9216K ........ ........ ........ ........ ........ ........ 30% 808K 34s + 12288K ........ ........ ........ ........ ........ ........ 37% 738K 32s + 15360K ........ ........ ........ ........ ........ ........ 45% 856K 27s + 18432K ........ ........ ........ ........ ........ ........ 52% 1,21M 23s + 21504K ........ ........ ........ ........ ........ ........ 60% 1,09M 18s + 24576K ........ ........ ........ ........ ........ ........ 67% 799K 15s + 27648K ........ ........ ........ ........ ........ ........ 75% 1,53M 11s + 30720K ........ ........ ........ ........ ........ ........ 82% 1,09M 8s + 33792K ........ ........ ........ ........ ........ ........ 90% 916K 4s + 36864K ........ ........ ........ ........ ........ ........ 97% 1,04M 1s + 39936K ........ ...... 100% 907K=44s -2022-08-18 20:54:11 (450 KB/s) - ‘./cairo-1.17.4.tar.xz’ gespeichert [41834076/41834076] +2022-10-27 12:54:19 (937 KB/s) - ‘./cairo-1.17.4.tar.xz’ gespeichert [41834076/41834076] ---2022-08-18 20:54:12-- https://dev-www.libreoffice.org/src/pixman-0.40.0.tar.gz +--2022-10-27 12:54:19-- https://dev-www.libreoffice.org/src/pixman-0.40.0.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 913976 (893K) [application/octet-stream] Wird in ‘./pixman-0.40.0.tar.gz’ gespeichert. - 0K ........ ..... 100% 469K=1,9s + 0K ........ ..... 100% 1,14M=0,8s -2022-08-18 20:54:14 (469 KB/s) - ‘./pixman-0.40.0.tar.gz’ gespeichert [913976/913976] +2022-10-27 12:54:20 (1,14 MB/s) - ‘./pixman-0.40.0.tar.gz’ gespeichert [913976/913976] ---2022-08-18 20:54:14-- https://dev-www.libreoffice.org/src/libcdr-0.1.7.tar.xz +--2022-10-27 12:54:20-- https://dev-www.libreoffice.org/src/libcdr-0.1.7.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 618528 (604K) [application/octet-stream] Wird in ‘./libcdr-0.1.7.tar.xz’ gespeichert. - 0K ........ . 100% 391K=1,5s + 0K ........ . 100% 1,18M=0,5s -2022-08-18 20:54:16 (391 KB/s) - ‘./libcdr-0.1.7.tar.xz’ gespeichert [618528/618528] +2022-10-27 12:54:21 (1,18 MB/s) - ‘./libcdr-0.1.7.tar.xz’ gespeichert [618528/618528] ---2022-08-18 20:54:16-- https://dev-www.libreoffice.org/src/48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz +--2022-10-27 12:54:21-- https://dev-www.libreoffice.org/src/48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2241498 (2,1M) [application/octet-stream] Wird in ‘./48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ .. 100% 388K=5,6s + 0K ........ ........ ........ ........ .. 100% 980K=2,2s -2022-08-18 20:54:21 (388 KB/s) - ‘./48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz’ gespeichert [2241498/2241498] +2022-10-27 12:54:23 (980 KB/s) - ‘./48d647fbd8ef8889e5a7f422c1bfda94-clucene-core-2.3.3.4.tar.gz’ gespeichert [2241498/2241498] ---2022-08-18 20:54:21-- https://dev-www.libreoffice.org/src/dtoa-20180411.tgz +--2022-10-27 12:54:23-- https://dev-www.libreoffice.org/src/dtoa-20180411.tgz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 48893 (48K) [application/octet-stream] Wird in ‘./dtoa-20180411.tgz’ gespeichert. - 0K 100% 622K=0,08s + 0K 100% 1,23M=0,04s -2022-08-18 20:54:22 (622 KB/s) - ‘./dtoa-20180411.tgz’ gespeichert [48893/48893] +2022-10-27 12:54:24 (1,23 MB/s) - ‘./dtoa-20180411.tgz’ gespeichert [48893/48893] ---2022-08-18 20:54:22-- https://dev-www.libreoffice.org/src/libcmis-0.5.2.tar.xz +--2022-10-27 12:54:24-- https://dev-www.libreoffice.org/src/libcmis-0.5.2.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 484404 (473K) [application/octet-stream] Wird in ‘./libcmis-0.5.2.tar.xz’ gespeichert. - 0K ....... 100% 578K=0,8s + 0K ....... 100% 1,20M=0,4s -2022-08-18 20:54:23 (578 KB/s) - ‘./libcmis-0.5.2.tar.xz’ gespeichert [484404/484404] +2022-10-27 12:54:24 (1,20 MB/s) - ‘./libcmis-0.5.2.tar.xz’ gespeichert [484404/484404] ---2022-08-18 20:54:23-- https://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz +--2022-10-27 12:54:24-- https://dev-www.libreoffice.org/src/CoinMP-1.7.6.tgz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 10343849 (9,9M) [application/octet-stream] Wird in ‘./CoinMP-1.7.6.tgz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 30% 549K 13s - 3072K ........ ........ ........ ........ ........ ........ 60% 500K 8s - 6144K ........ ........ ........ ........ ........ ........ 91% 536K 2s - 9216K ........ ..... 100% 643K=19s + 0K ........ ........ ........ ........ ........ ........ 30% 638K 11s + 3072K ........ ........ ........ ........ ........ ........ 60% 835K 5s + 6144K ........ ........ ........ ........ ........ ........ 91% 907K 1s + 9216K ........ ..... 100% 821K=13s -2022-08-18 20:54:42 (536 KB/s) - ‘./CoinMP-1.7.6.tgz’ gespeichert [10343849/10343849] +2022-10-27 12:54:38 (779 KB/s) - ‘./CoinMP-1.7.6.tgz’ gespeichert [10343849/10343849] ---2022-08-18 20:54:42-- https://dev-www.libreoffice.org/src/cppunit-1.15.1.tar.gz +--2022-10-27 12:54:38-- https://dev-www.libreoffice.org/src/cppunit-1.15.1.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 814363 (795K) [application/octet-stream] Wird in ‘./cppunit-1.15.1.tar.gz’ gespeichert. - 0K ........ .... 100% 590K=1,3s + 0K ........ .... 100% 927K=0,9s -2022-08-18 20:54:44 (590 KB/s) - ‘./cppunit-1.15.1.tar.gz’ gespeichert [814363/814363] +2022-10-27 12:54:39 (927 KB/s) - ‘./cppunit-1.15.1.tar.gz’ gespeichert [814363/814363] ---2022-08-18 20:54:44-- https://dev-www.libreoffice.org/src/1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt +--2022-10-27 12:54:39-- https://dev-www.libreoffice.org/src/1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 49659 (48K) [application/octet-stream] Wird in ‘./1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt’ gespeichert. - 0K 100% 676K=0,07s + 0K 100% 1,14M=0,04s -2022-08-18 20:54:44 (676 KB/s) - ‘./1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt’ gespeichert [49659/49659] +2022-10-27 12:54:39 (1,14 MB/s) - ‘./1f467e5bb703f12cbbb09d5cf67ecf4a-converttexttonumber-1-5-0.oxt’ gespeichert [49659/49659] ---2022-08-18 20:54:44-- https://dev-www.libreoffice.org/src/curl-7.83.1.tar.xz +--2022-10-27 12:54:39-- https://dev-www.libreoffice.org/src/curl-7.86.0.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK -Länge: 2474940 (2,4M) [application/octet-stream] -Wird in ‘./curl-7.83.1.tar.xz’ gespeichert. +Länge: 2518356 (2,4M) [application/octet-stream] +Wird in ‘./curl-7.86.0.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ..... 100% 394K=6,1s + 0K ........ ........ ........ ........ ...... 100% 829K=3,0s -2022-08-18 20:54:50 (394 KB/s) - ‘./curl-7.83.1.tar.xz’ gespeichert [2474940/2474940] +2022-10-27 12:54:42 (829 KB/s) - ‘./curl-7.86.0.tar.xz’ gespeichert [2518356/2518356] ---2022-08-18 20:54:50-- https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz +--2022-10-27 12:54:42-- https://dev-www.libreoffice.org/src/libe-book-0.1.3.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 416268 (407K) [application/octet-stream] Wird in ‘./libe-book-0.1.3.tar.xz’ gespeichert. - 0K ...... 100% 325K=1,3s + 0K ...... 100% 718K=0,6s -2022-08-18 20:54:52 (325 KB/s) - ‘./libe-book-0.1.3.tar.xz’ gespeichert [416268/416268] +2022-10-27 12:54:43 (718 KB/s) - ‘./libe-book-0.1.3.tar.xz’ gespeichert [416268/416268] ---2022-08-18 20:54:52-- https://dev-www.libreoffice.org/src/3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz +--2022-10-27 12:54:43-- https://dev-www.libreoffice.org/src/3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 463264 (452K) [application/octet-stream] Wird in ‘./3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz’ gespeichert. - 0K ....... 100% 331K=1,4s + 0K ....... 100% 852K=0,5s -2022-08-18 20:54:54 (331 KB/s) - ‘./3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz’ gespeichert [463264/463264] +2022-10-27 12:54:44 (852 KB/s) - ‘./3ade8cfe7e59ca8e65052644fed9fca4-epm-3.7.tar.gz’ gespeichert [463264/463264] ---2022-08-18 20:54:54-- https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz +--2022-10-27 12:54:44-- https://dev-www.libreoffice.org/src/libepubgen-0.1.1.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 324380 (317K) [application/octet-stream] Wird in ‘./libepubgen-0.1.1.tar.xz’ gespeichert. - 0K .... 100% 414K=0,8s + 0K .... 100% 784K=0,4s -2022-08-18 20:54:55 (414 KB/s) - ‘./libepubgen-0.1.1.tar.xz’ gespeichert [324380/324380] +2022-10-27 12:54:45 (784 KB/s) - ‘./libepubgen-0.1.1.tar.xz’ gespeichert [324380/324380] ---2022-08-18 20:54:55-- https://dev-www.libreoffice.org/src/libetonyek-0.1.10.tar.xz +--2022-10-27 12:54:45-- https://dev-www.libreoffice.org/src/libetonyek-0.1.10.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1494000 (1,4M) [application/octet-stream] Wird in ‘./libetonyek-0.1.10.tar.xz’ gespeichert. - 0K ........ ........ ...... 100% 397K=3,7s + 0K ........ ........ ...... 100% 831K=1,8s -2022-08-18 20:54:59 (397 KB/s) - ‘./libetonyek-0.1.10.tar.xz’ gespeichert [1494000/1494000] +2022-10-27 12:54:47 (831 KB/s) - ‘./libetonyek-0.1.10.tar.xz’ gespeichert [1494000/1494000] ---2022-08-18 20:54:59-- https://dev-www.libreoffice.org/src/expat-2.4.6.tar.xz +--2022-10-27 12:54:47-- https://dev-www.libreoffice.org/src/expat-2.4.9.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK -Länge: 452468 (442K) [application/octet-stream] -Wird in ‘./expat-2.4.6.tar.xz’ gespeichert. +Länge: 459284 (449K) [application/octet-stream] +Wird in ‘./expat-2.4.9.tar.xz’ gespeichert. - 0K ...... 100% 515K=0,9s + 0K ....... 100% 801K=0,6s -2022-08-18 20:55:00 (515 KB/s) - ‘./expat-2.4.6.tar.xz’ gespeichert [452468/452468] +2022-10-27 12:54:47 (801 KB/s) - ‘./expat-2.4.9.tar.xz’ gespeichert [459284/459284] ---2022-08-18 20:55:00-- https://dev-www.libreoffice.org/src/Firebird-3.0.7.33374-0.tar.bz2 +--2022-10-27 12:54:47-- https://dev-www.libreoffice.org/src/Firebird-3.0.7.33374-0.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 9841457 (9,4M) [application/octet-stream] Wird in ‘./Firebird-3.0.7.33374-0.tar.bz2’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 31% 419K 16s - 3072K ........ ........ ........ ........ ........ ........ 63% 544K 7s - 6144K ........ ........ ........ ........ ........ ........ 95% 518K 1s - 9216K ...... 100% 426K=20s + 0K ........ ........ ........ ........ ........ ........ 31% 921K 7s + 3072K ........ ........ ........ ........ ........ ........ 63% 1,03M 4s + 6144K ........ ........ ........ ........ ........ ........ 95% 956K 0s + 9216K ...... 100% 755K=10s -2022-08-18 20:55:20 (485 KB/s) - ‘./Firebird-3.0.7.33374-0.tar.bz2’ gespeichert [9841457/9841457] +2022-10-27 12:54:58 (962 KB/s) - ‘./Firebird-3.0.7.33374-0.tar.bz2’ gespeichert [9841457/9841457] ---2022-08-18 20:55:20-- https://dev-www.libreoffice.org/src/fontconfig-2.13.94.tar.xz +--2022-10-27 12:54:58-- https://dev-www.libreoffice.org/src/fontconfig-2.13.94.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1416832 (1,4M) [application/octet-stream] Wird in ‘./fontconfig-2.13.94.tar.xz’ gespeichert. - 0K ........ ........ ..... 100% 371K=3,7s + 0K ........ ........ ..... 100% 974K=1,4s -2022-08-18 20:55:24 (371 KB/s) - ‘./fontconfig-2.13.94.tar.xz’ gespeichert [1416832/1416832] +2022-10-27 12:54:59 (974 KB/s) - ‘./fontconfig-2.13.94.tar.xz’ gespeichert [1416832/1416832] ---2022-08-18 20:55:24-- https://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz +--2022-10-27 12:54:59-- https://dev-www.libreoffice.org/src/libfreehand-0.1.2.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 516132 (504K) [application/octet-stream] Wird in ‘./libfreehand-0.1.2.tar.xz’ gespeichert. - 0K ....... 100% 482K=1,0s + 0K ....... 100% 713K=0,7s -2022-08-18 20:55:25 (482 KB/s) - ‘./libfreehand-0.1.2.tar.xz’ gespeichert [516132/516132] +2022-10-27 12:55:00 (713 KB/s) - ‘./libfreehand-0.1.2.tar.xz’ gespeichert [516132/516132] ---2022-08-18 20:55:25-- https://dev-www.libreoffice.org/src/freetype-2.11.0.tar.xz +--2022-10-27 12:55:00-- https://dev-www.libreoffice.org/src/freetype-2.11.0.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2256640 (2,2M) [application/octet-stream] Wird in ‘./freetype-2.11.0.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ .. 100% 509K=4,3s + 0K ........ ........ ........ ........ .. 100% 795K=2,8s -2022-08-18 20:55:30 (509 KB/s) - ‘./freetype-2.11.0.tar.xz’ gespeichert [2256640/2256640] +2022-10-27 12:55:03 (795 KB/s) - ‘./freetype-2.11.0.tar.xz’ gespeichert [2256640/2256640] ---2022-08-18 20:55:30-- https://dev-www.libreoffice.org/src/libepoxy-1.5.9.tar.xz +--2022-10-27 12:55:03-- https://dev-www.libreoffice.org/src/libepoxy-1.5.10.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK -Länge: 221924 (217K) [application/octet-stream] -Wird in ‘./libepoxy-1.5.9.tar.xz’ gespeichert. +Länge: 332078 (324K) [application/octet-stream] +Wird in ‘./libepoxy-1.5.10.tar.gz’ gespeichert. - 0K ... 100% 524K=0,4s + 0K ..... 100% 1,03M=0,3s -2022-08-18 20:55:31 (524 KB/s) - ‘./libepoxy-1.5.9.tar.xz’ gespeichert [221924/221924] +2022-10-27 12:55:04 (1,03 MB/s) - ‘./libepoxy-1.5.10.tar.gz’ gespeichert [332078/332078] ---2022-08-18 20:55:31-- https://dev-www.libreoffice.org/src/glm-0.9.9.8.zip +--2022-10-27 12:55:04-- https://dev-www.libreoffice.org/src/glm-0.9.9.8.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 5856665 (5,6M) [application/zip] Wird in ‘./glm-0.9.9.8.zip’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 53% 578K 5s - 3072K ........ ........ ........ ........ ........ . 100% 369K=12s + 0K ........ ........ ........ ........ ........ ........ 53% 813K 3s + 3072K ........ ........ ........ ........ ........ . 100% 628K=8,0s -2022-08-18 20:55:43 (458 KB/s) - ‘./glm-0.9.9.8.zip’ gespeichert [5856665/5856665] +2022-10-27 12:55:12 (715 KB/s) - ‘./glm-0.9.9.8.zip’ gespeichert [5856665/5856665] ---2022-08-18 20:55:43-- https://dev-www.libreoffice.org/src/gpgme-1.16.0.tar.bz2 +--2022-10-27 12:55:12-- https://dev-www.libreoffice.org/src/gpgme-1.16.0.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1718913 (1,6M) [application/octet-stream] Wird in ‘./gpgme-1.16.0.tar.bz2’ gespeichert. - 0K ........ ........ ........ .. 100% 333K=5,0s + 0K ........ ........ ........ .. 100% 749K=2,2s -2022-08-18 20:55:49 (333 KB/s) - ‘./gpgme-1.16.0.tar.bz2’ gespeichert [1718913/1718913] +2022-10-27 12:55:15 (749 KB/s) - ‘./gpgme-1.16.0.tar.bz2’ gespeichert [1718913/1718913] ---2022-08-18 20:55:49-- https://dev-www.libreoffice.org/src/graphite2-minimal-1.3.14.tgz +--2022-10-27 12:55:15-- https://dev-www.libreoffice.org/src/graphite2-minimal-1.3.14.tgz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 149974 (146K) [application/octet-stream] Wird in ‘./graphite2-minimal-1.3.14.tgz’ gespeichert. - 0K .. 100% 485K=0,3s + 0K .. 100% 772K=0,2s -2022-08-18 20:55:49 (485 KB/s) - ‘./graphite2-minimal-1.3.14.tgz’ gespeichert [149974/149974] +2022-10-27 12:55:15 (772 KB/s) - ‘./graphite2-minimal-1.3.14.tgz’ gespeichert [149974/149974] ---2022-08-18 20:55:49-- https://dev-www.libreoffice.org/src/harfbuzz-2.8.2.tar.xz +--2022-10-27 12:55:15-- https://dev-www.libreoffice.org/src/harfbuzz-2.8.2.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 10678956 (10M) [application/octet-stream] Wird in ‘./harfbuzz-2.8.2.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 29% 562K 13s - 3072K ........ ........ ........ ........ ........ ........ 58% 332K 10s - 6144K ........ ........ ........ ........ ........ ........ 88% 417K 3s - 9216K ........ ........ .. 100% 502K=25s + 0K ........ ........ ........ ........ ........ ........ 29% 857K 9s + 3072K ........ ........ ........ ........ ........ ........ 58% 1,28M 4s + 6144K ........ ........ ........ ........ ........ ........ 88% 1,39M 1s + 9216K ........ ........ .. 100% 905K=9,4s -2022-08-18 20:56:14 (425 KB/s) - ‘./harfbuzz-2.8.2.tar.xz’ gespeichert [10678956/10678956] +2022-10-27 12:55:25 (1,08 MB/s) - ‘./harfbuzz-2.8.2.tar.xz’ gespeichert [10678956/10678956] ---2022-08-18 20:56:14-- https://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip +--2022-10-27 12:55:25-- https://dev-www.libreoffice.org/src/17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 3519470 (3,4M) [application/zip] Wird in ‘./17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 89% 533K 1s - 3072K ..... 100% 461K=6,6s + 0K ........ ........ ........ ........ ........ ........ 89% 1,01M 0s + 3072K ..... 100% 939K=3,3s -2022-08-18 20:56:21 (525 KB/s) - ‘./17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip’ gespeichert [3519470/3519470] +2022-10-27 12:55:29 (1,00 MB/s) - ‘./17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip’ gespeichert [3519470/3519470] ---2022-08-18 20:56:21-- https://dev-www.libreoffice.org/src/hunspell-1.7.0.tar.gz +--2022-10-27 12:55:29-- https://dev-www.libreoffice.org/src/hunspell-1.7.0.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 938142 (916K) [application/octet-stream] Wird in ‘./hunspell-1.7.0.tar.gz’ gespeichert. - 0K ........ ...... 100% 436K=2,1s + 0K ........ ...... 100% 865K=1,1s -2022-08-18 20:56:23 (436 KB/s) - ‘./hunspell-1.7.0.tar.gz’ gespeichert [938142/938142] +2022-10-27 12:55:30 (865 KB/s) - ‘./hunspell-1.7.0.tar.gz’ gespeichert [938142/938142] ---2022-08-18 20:56:23-- https://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz +--2022-10-27 12:55:30-- https://dev-www.libreoffice.org/src/5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 638369 (623K) [application/octet-stream] Wird in ‘./5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz’ gespeichert. - 0K ........ . 100% 463K=1,3s + 0K ........ . 100% 733K=0,9s -2022-08-18 20:56:25 (463 KB/s) - ‘./5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz’ gespeichert [638369/638369] +2022-10-27 12:55:31 (733 KB/s) - ‘./5ade6ae2a99bc1e9e57031ca88d36dad-hyphen-2.8.8.tar.gz’ gespeichert [638369/638369] ---2022-08-18 20:56:25-- https://dev-www.libreoffice.org/src/icu4c-70_1-src.tgz +--2022-10-27 12:55:31-- https://dev-www.libreoffice.org/src/icu4c-70_1-src.tgz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 25449582 (24M) [application/octet-stream] Wird in ‘./icu4c-70_1-src.tgz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 12% 574K 38s - 3072K ........ ........ ........ ........ ........ ........ 24% 381K 41s - 6144K ........ ........ ........ ........ ........ ........ 37% 525K 33s - 9216K ........ ........ ........ ........ ........ ........ 49% 526K 26s - 12288K ........ ........ ........ ........ ........ ........ 61% 487K 19s - 15360K ........ ........ ........ ........ ........ ........ 74% 293K 15s - 18432K ........ ........ ........ ........ ........ ........ 86% 392K 8s - 21504K ........ ........ ........ ........ ........ ........ 98% 384K 1s - 24576K .... 100% 470K=58s + 0K ........ ........ ........ ........ ........ ........ 12% 1,30M 16s + 3072K ........ ........ ........ ........ ........ ........ 24% 796K 19s + 6144K ........ ........ ........ ........ ........ ........ 37% 1,24M 15s + 9216K ........ ........ ........ ........ ........ ........ 49% 1,59M 11s + 12288K ........ ........ ........ ........ ........ ........ 61% 1,36M 8s + 15360K ........ ........ ........ ........ ........ ........ 74% 749K 6s + 18432K ........ ........ ........ ........ ........ ........ 86% 844K 3s + 21504K ........ ........ ........ ........ ........ ........ 98% 694K 0s + 24576K .... 100% 1,14M=25s -2022-08-18 20:57:24 (426 KB/s) - ‘./icu4c-70_1-src.tgz’ gespeichert [25449582/25449582] +2022-10-27 12:55:56 (990 KB/s) - ‘./icu4c-70_1-src.tgz’ gespeichert [25449582/25449582] ---2022-08-18 20:57:24-- https://dev-www.libreoffice.org/src/icu4c-70_1-data.zip +--2022-10-27 12:55:57-- https://dev-www.libreoffice.org/src/icu4c-70_1-data.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 18770261 (18M) [application/zip] Wird in ‘./icu4c-70_1-data.zip’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 16% 503K 30s - 3072K ........ ........ ........ ........ ........ ........ 33% 467K 25s - 6144K ........ ........ ........ ........ ........ ........ 50% 440K 19s - 9216K ........ ........ ........ ........ ........ ........ 67% 364K 14s - 12288K ........ ........ ........ ........ ........ ........ 83% 524K 7s - 15360K ........ ........ ........ ........ ........ ...... 100% 739K=38s + 0K ........ ........ ........ ........ ........ ........ 16% 1,54M 10s + 3072K ........ ........ ........ ........ ........ ........ 33% 914K 11s + 6144K ........ ........ ........ ........ ........ ........ 50% 1,27M 8s + 9216K ........ ........ ........ ........ ........ ........ 67% 777K 6s + 12288K ........ ........ ........ ........ ........ ........ 83% 980K 3s + 15360K ........ ........ ........ ........ ........ ...... 100% 990K=18s -2022-08-18 20:58:02 (483 KB/s) - ‘./icu4c-70_1-data.zip’ gespeichert [18770261/18770261] +2022-10-27 12:56:15 (1,01 MB/s) - ‘./icu4c-70_1-data.zip’ gespeichert [18770261/18770261] ---2022-08-18 20:58:02-- https://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip +--2022-10-27 12:56:15-- https://dev-www.libreoffice.org/src/ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 743031 (726K) [application/zip] Wird in ‘./ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip’ gespeichert. - 0K ........ ... 100% 380K=1,9s + 0K ........ ... 100% 568K=1,3s -2022-08-18 20:58:04 (380 KB/s) - ‘./ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip’ gespeichert [743031/743031] +2022-10-27 12:56:16 (568 KB/s) - ‘./ba2930200c9f019c2d93a8c88c651a0f-flow-engine-0.9.4.zip’ gespeichert [743031/743031] ---2022-08-18 20:58:04-- https://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip +--2022-10-27 12:56:16-- https://dev-www.libreoffice.org/src/d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 207563 (203K) [application/zip] Wird in ‘./d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip’ gespeichert. - 0K ... 100% 510K=0,4s + 0K ... 100% 605K=0,3s -2022-08-18 20:58:05 (510 KB/s) - ‘./d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip’ gespeichert [207563/207563] +2022-10-27 12:56:17 (605 KB/s) - ‘./d8bd5eed178db6e2b18eeed243f85aa8-flute-1.1.6.zip’ gespeichert [207563/207563] ---2022-08-18 20:58:05-- https://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip +--2022-10-27 12:56:17-- https://dev-www.libreoffice.org/src/eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 427800 (418K) [application/zip] Wird in ‘./eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip’ gespeichert. - 0K ...... 100% 385K=1,1s + 0K ...... 100% 689K=0,6s -2022-08-18 20:58:06 (385 KB/s) - ‘./eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip’ gespeichert [427800/427800] +2022-10-27 12:56:18 (689 KB/s) - ‘./eeb2c7ddf0d302fba4bfc6e97eac9624-libbase-1.1.6.zip’ gespeichert [427800/427800] ---2022-08-18 20:58:06-- https://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip +--2022-10-27 12:56:18-- https://dev-www.libreoffice.org/src/3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 5750610 (5,5M) [application/zip] Wird in ‘./3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 54% 397K 6s - 3072K ........ ........ ........ ........ ....... 100% 395K=14s + 0K ........ ........ ........ ........ ........ ........ 54% 1,18M 2s + 3072K ........ ........ ........ ........ ....... 100% 742K=6,0s -2022-08-18 20:58:21 (396 KB/s) - ‘./3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip’ gespeichert [5750610/5750610] +2022-10-27 12:56:24 (940 KB/s) - ‘./3bdf40c0d199af31923e900d082ca2dd-libfonts-1.1.6.zip’ gespeichert [5750610/5750610] ---2022-08-18 20:58:21-- https://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip +--2022-10-27 12:56:24-- https://dev-www.libreoffice.org/src/3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1180582 (1,1M) [application/zip] Wird in ‘./3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip’ gespeichert. - 0K ........ ........ .. 100% 445K=2,6s + 0K ........ ........ .. 100% 962K=1,2s -2022-08-18 20:58:24 (445 KB/s) - ‘./3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip’ gespeichert [1180582/1180582] +2022-10-27 12:56:25 (962 KB/s) - ‘./3404ab6b1792ae5f16bbd603bd1e1d03-libformula-1.1.7.zip’ gespeichert [1180582/1180582] ---2022-08-18 20:58:24-- https://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip +--2022-10-27 12:56:26-- https://dev-www.libreoffice.org/src/db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1396007 (1,3M) [application/zip] Wird in ‘./db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip’ gespeichert. - 0K ........ ........ ..... 100% 731K=1,9s + 0K ........ ........ ..... 100% 1007K=1,4s -2022-08-18 20:58:26 (731 KB/s) - ‘./db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip’ gespeichert [1396007/1396007] +2022-10-27 12:56:27 (1007 KB/s) - ‘./db60e4fde8dd6d6807523deb71ee34dc-liblayout-0.2.10.zip’ gespeichert [1396007/1396007] ---2022-08-18 20:58:26-- https://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip +--2022-10-27 12:56:27-- https://dev-www.libreoffice.org/src/97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2938721 (2,8M) [application/zip] Wird in ‘./97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip’ gespeichert. - 0K ........ ........ ........ ........ ........ .... 100% 401K=7,2s + 0K ........ ........ ........ ........ ........ .... 100% 1,94M=1,4s -2022-08-18 20:58:33 (401 KB/s) - ‘./97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip’ gespeichert [2938721/2938721] +2022-10-27 12:56:29 (1,94 MB/s) - ‘./97b2d4dba862397f446b217e2b623e71-libloader-1.1.6.zip’ gespeichert [2938721/2938721] ---2022-08-18 20:58:33-- https://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip +--2022-10-27 12:56:29-- https://dev-www.libreoffice.org/src/8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 762419 (745K) [application/zip] Wird in ‘./8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip’ gespeichert. - 0K ........ ... 100% 496K=1,5s + 0K ........ ... 100% 2,04M=0,4s -2022-08-18 20:58:35 (496 KB/s) - ‘./8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip’ gespeichert [762419/762419] +2022-10-27 12:56:29 (2,04 MB/s) - ‘./8ce2fcd72becf06c41f7201d15373ed9-librepository-1.1.6.zip’ gespeichert [762419/762419] ---2022-08-18 20:58:35-- https://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip +--2022-10-27 12:56:30-- https://dev-www.libreoffice.org/src/f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 211919 (207K) [application/zip] Wird in ‘./f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip’ gespeichert. - 0K ... 100% 427K=0,5s + 0K ... 100% 1,67M=0,1s -2022-08-18 20:58:36 (427 KB/s) - ‘./f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip’ gespeichert [211919/211919] +2022-10-27 12:56:30 (1,67 MB/s) - ‘./f94d9870737518e3b597f9265f4e9803-libserializer-1.1.6.zip’ gespeichert [211919/211919] ---2022-08-18 20:58:36-- https://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip +--2022-10-27 12:56:30-- https://dev-www.libreoffice.org/src/ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2929311 (2,8M) [application/zip] Wird in ‘./ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip’ gespeichert. - 0K ........ ........ ........ ........ ........ .... 100% 503K=5,7s + 0K ........ ........ ........ ........ ........ .... 100% 1,47M=1,9s -2022-08-18 20:58:42 (503 KB/s) - ‘./ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip’ gespeichert [2929311/2929311] +2022-10-27 12:56:32 (1,47 MB/s) - ‘./ace6ab49184e329db254e454a010f56d-libxml-1.1.7.zip’ gespeichert [2929311/2929311] ---2022-08-18 20:58:42-- https://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip +--2022-10-27 12:56:32-- https://dev-www.libreoffice.org/src/39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 153157 (150K) [application/zip] Wird in ‘./39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip’ gespeichert. - 0K .. 100% 572K=0,3s + 0K .. 100% 1,20M=0,1s -2022-08-18 20:58:42 (572 KB/s) - ‘./39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip’ gespeichert [153157/153157] +2022-10-27 12:56:32 (1,20 MB/s) - ‘./39bb3fcea1514f1369fcfc87542390fd-sacjava-1.3.zip’ gespeichert [153157/153157] ---2022-08-18 20:58:42-- https://dev-www.libreoffice.org/src/libjpeg-turbo-2.1.1.tar.gz +--2022-10-27 12:56:32-- https://dev-www.libreoffice.org/src/libjpeg-turbo-2.1.1.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2256321 (2,2M) [application/octet-stream] Wird in ‘./libjpeg-turbo-2.1.1.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ .. 100% 492K=4,5s + 0K ........ ........ ........ ........ .. 100% 741K=3,0s -2022-08-18 20:58:47 (492 KB/s) - ‘./libjpeg-turbo-2.1.1.tar.gz’ gespeichert [2256321/2256321] +2022-10-27 12:56:36 (741 KB/s) - ‘./libjpeg-turbo-2.1.1.tar.gz’ gespeichert [2256321/2256321] ---2022-08-18 20:58:47-- https://dev-www.libreoffice.org/src/b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2 +--2022-10-27 12:56:36-- https://dev-www.libreoffice.org/src/b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 37482428 (36M) [application/octet-stream] Wird in ‘./b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 8% 478K 70s - 3072K ........ ........ ........ ........ ........ ........ 16% 456K 65s - 6144K ........ ........ ........ ........ ........ ........ 25% 591K 55s - 9216K ........ ........ ........ ........ ........ ........ 33% 413K 51s - 12288K ........ ........ ........ ........ ........ ........ 41% 558K 43s - 15360K ........ ........ ........ ........ ........ ........ 50% 395K 39s - 18432K ........ ........ ........ ........ ........ ........ 58% 287K 35s - 21504K ........ ........ ........ ........ ........ ........ 67% 474K 28s - 24576K ........ ........ ........ ........ ........ ........ 75% 516K 20s - 27648K ........ ........ ........ ........ ........ ........ 83% 295K 14s - 30720K ........ ........ ........ ........ ........ ........ 92% 382K 7s - 33792K ........ ........ ........ ........ ........ ... 100% 396K=88s + 0K ........ ........ ........ ........ ........ ........ 8% 766K 44s + 3072K ........ ........ ........ ........ ........ ........ 16% 947K 36s + 6144K ........ ........ ........ ........ ........ ........ 25% 1,36M 28s + 9216K ........ ........ ........ ........ ........ ........ 33% 1,43M 23s + 12288K ........ ........ ........ ........ ........ ........ 41% 2,19M 18s + 15360K ........ ........ ........ ........ ........ ........ 50% 1,63M 15s + 18432K ........ ........ ........ ........ ........ ........ 58% 1,28M 12s + 21504K ........ ........ ........ ........ ........ ........ 67% 1,47M 9s + 24576K ........ ........ ........ ........ ........ ........ 75% 1,45M 7s + 27648K ........ ........ ........ ........ ........ ........ 83% 1,46M 4s + 30720K ........ ........ ........ ........ ........ ........ 92% 1,37M 2s + 33792K ........ ........ ........ ........ ........ ... 100% 972K=28s -2022-08-18 21:00:15 (417 KB/s) - ‘./b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2’ gespeichert [37482428/37482428] +2022-10-27 12:57:04 (1,26 MB/s) - ‘./b63e6340a02ff1cacfeadb2c42286161-JLanguageTool-1.7.0.tar.bz2’ gespeichert [37482428/37482428] ---2022-08-18 21:00:15-- https://dev-www.libreoffice.org/src/lcms2-2.12.tar.gz +--2022-10-27 12:57:05-- https://dev-www.libreoffice.org/src/lcms2-2.12.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 7419126 (7,1M) [application/octet-stream] Wird in ‘./lcms2-2.12.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 42% 433K 10s - 3072K ........ ........ ........ ........ ........ ........ 84% 428K 3s - 6144K ........ ........ . 100% 415K=17s + 0K ........ ........ ........ ........ ........ ........ 42% 2,01M 2s + 3072K ........ ........ ........ ........ ........ ........ 84% 3,02M 0s + 6144K ........ ........ . 100% 2,82M=2,9s -2022-08-18 21:00:33 (428 KB/s) - ‘./lcms2-2.12.tar.gz’ gespeichert [7419126/7419126] +2022-10-27 12:57:08 (2,47 MB/s) - ‘./lcms2-2.12.tar.gz’ gespeichert [7419126/7419126] ---2022-08-18 21:00:33-- https://dev-www.libreoffice.org/src/libatomic_ops-7.6.8.tar.gz +--2022-10-27 12:57:08-- https://dev-www.libreoffice.org/src/libatomic_ops-7.6.8.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 503550 (492K) [application/octet-stream] Wird in ‘./libatomic_ops-7.6.8.tar.gz’ gespeichert. - 0K ....... 100% 411K=1,2s + 0K ....... 100% 2,27M=0,2s -2022-08-18 21:00:34 (411 KB/s) - ‘./libatomic_ops-7.6.8.tar.gz’ gespeichert [503550/503550] +2022-10-27 12:57:08 (2,27 MB/s) - ‘./libatomic_ops-7.6.8.tar.gz’ gespeichert [503550/503550] ---2022-08-18 21:00:34-- https://dev-www.libreoffice.org/src/libassuan-2.5.5.tar.bz2 +--2022-10-27 12:57:08-- https://dev-www.libreoffice.org/src/libassuan-2.5.5.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 572263 (559K) [application/octet-stream] Wird in ‘./libassuan-2.5.5.tar.bz2’ gespeichert. - 0K ........ 100% 468K=1,2s + 0K ........ 100% 2,16M=0,3s -2022-08-18 21:00:36 (468 KB/s) - ‘./libassuan-2.5.5.tar.bz2’ gespeichert [572263/572263] +2022-10-27 12:57:09 (2,16 MB/s) - ‘./libassuan-2.5.5.tar.bz2’ gespeichert [572263/572263] ---2022-08-18 21:00:36-- https://dev-www.libreoffice.org/src/libeot-0.01.tar.bz2 +--2022-10-27 12:57:09-- https://dev-www.libreoffice.org/src/libeot-0.01.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 260288 (254K) [application/octet-stream] Wird in ‘./libeot-0.01.tar.bz2’ gespeichert. - 0K ... 100% 302K=0,8s + 0K ... 100% 1,85M=0,1s -2022-08-18 21:00:37 (302 KB/s) - ‘./libeot-0.01.tar.bz2’ gespeichert [260288/260288] +2022-10-27 12:57:09 (1,85 MB/s) - ‘./libeot-0.01.tar.bz2’ gespeichert [260288/260288] ---2022-08-18 21:00:37-- https://dev-www.libreoffice.org/src/libexttextcat-3.4.6.tar.xz +--2022-10-27 12:57:09-- https://dev-www.libreoffice.org/src/libexttextcat-3.4.6.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1111320 (1,1M) [application/octet-stream] Wird in ‘./libexttextcat-3.4.6.tar.xz’ gespeichert. - 0K ........ ........ 100% 546K=2,0s + 0K ........ ........ 100% 2,17M=0,5s -2022-08-18 21:00:39 (546 KB/s) - ‘./libexttextcat-3.4.6.tar.xz’ gespeichert [1111320/1111320] +2022-10-27 12:57:10 (2,17 MB/s) - ‘./libexttextcat-3.4.6.tar.xz’ gespeichert [1111320/1111320] ---2022-08-18 21:00:39-- https://dev-www.libreoffice.org/src/libffi-3.3.tar.gz +--2022-10-27 12:57:10-- https://dev-www.libreoffice.org/src/libffi-3.3.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1305466 (1,2M) [application/octet-stream] Wird in ‘./libffi-3.3.tar.gz’ gespeichert. - 0K ........ ........ ... 100% 493K=2,6s + 0K ........ ........ ... 100% 2,03M=0,6s -2022-08-18 21:00:42 (493 KB/s) - ‘./libffi-3.3.tar.gz’ gespeichert [1305466/1305466] +2022-10-27 12:57:11 (2,03 MB/s) - ‘./libffi-3.3.tar.gz’ gespeichert [1305466/1305466] ---2022-08-18 21:00:42-- https://dev-www.libreoffice.org/src/libgpg-error-1.43.tar.bz2 +--2022-10-27 12:57:11-- https://dev-www.libreoffice.org/src/libgpg-error-1.43.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 999006 (976K) [application/octet-stream] Wird in ‘./libgpg-error-1.43.tar.bz2’ gespeichert. - 0K ........ ....... 100% 264K=3,7s + 0K ........ ....... 100% 2,20M=0,4s -2022-08-18 21:00:46 (264 KB/s) - ‘./libgpg-error-1.43.tar.bz2’ gespeichert [999006/999006] +2022-10-27 12:57:11 (2,20 MB/s) - ‘./libgpg-error-1.43.tar.bz2’ gespeichert [999006/999006] ---2022-08-18 21:00:46-- https://dev-www.libreoffice.org/src/language-subtag-registry-2021-12-29.tar.bz2 +--2022-10-27 12:57:11-- https://dev-www.libreoffice.org/src/language-subtag-registry-2021-12-29.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 76945 (75K) [application/octet-stream] Wird in ‘./language-subtag-registry-2021-12-29.tar.bz2’ gespeichert. - 0K . 100% 505K=0,1s + 0K . 100% 1,56M=0,05s -2022-08-18 21:00:46 (505 KB/s) - ‘./language-subtag-registry-2021-12-29.tar.bz2’ gespeichert [76945/76945] +2022-10-27 12:57:12 (1,56 MB/s) - ‘./language-subtag-registry-2021-12-29.tar.bz2’ gespeichert [76945/76945] ---2022-08-18 21:00:46-- https://dev-www.libreoffice.org/src/liblangtag-0.6.3.tar.bz2 +--2022-10-27 12:57:12-- https://dev-www.libreoffice.org/src/liblangtag-0.6.3.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 755492 (738K) [application/octet-stream] Wird in ‘./liblangtag-0.6.3.tar.bz2’ gespeichert. - 0K ........ ... 100% 335K=2,2s + 0K ........ ... 100% 2,06M=0,3s -2022-08-18 21:00:49 (335 KB/s) - ‘./liblangtag-0.6.3.tar.bz2’ gespeichert [755492/755492] +2022-10-27 12:57:12 (2,06 MB/s) - ‘./liblangtag-0.6.3.tar.bz2’ gespeichert [755492/755492] ---2022-08-18 21:00:49-- https://dev-www.libreoffice.org/src/libnumbertext-1.0.10.tar.xz +--2022-10-27 12:57:12-- https://dev-www.libreoffice.org/src/libnumbertext-1.0.10.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 292852 (286K) [application/octet-stream] Wird in ‘./libnumbertext-1.0.10.tar.xz’ gespeichert. - 0K .... 100% 424K=0,7s + 0K .... 100% 1,72M=0,2s -2022-08-18 21:00:50 (424 KB/s) - ‘./libnumbertext-1.0.10.tar.xz’ gespeichert [292852/292852] +2022-10-27 12:57:13 (1,72 MB/s) - ‘./libnumbertext-1.0.10.tar.xz’ gespeichert [292852/292852] ---2022-08-18 21:00:50-- https://dev-www.libreoffice.org/src/libpng-1.6.37.tar.xz +--2022-10-27 12:57:13-- https://dev-www.libreoffice.org/src/libpng-1.6.38.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK -Länge: 1012272 (989K) [application/octet-stream] -Wird in ‘./libpng-1.6.37.tar.xz’ gespeichert. +Länge: 1023168 (999K) [application/octet-stream] +Wird in ‘./libpng-1.6.38.tar.xz’ gespeichert. - 0K ........ ....... 100% 500K=2,0s + 0K ........ ....... 100% 1,59M=0,6s -2022-08-18 21:00:52 (500 KB/s) - ‘./libpng-1.6.37.tar.xz’ gespeichert [1012272/1012272] +2022-10-27 12:57:14 (1,59 MB/s) - ‘./libpng-1.6.38.tar.xz’ gespeichert [1023168/1023168] ---2022-08-18 21:00:52-- https://dev-www.libreoffice.org/src/ltm-1.0.zip +--2022-10-27 12:57:14-- https://dev-www.libreoffice.org/src/ltm-1.0.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2542693 (2,4M) [application/zip] Wird in ‘./ltm-1.0.zip’ gespeichert. - 0K ........ ........ ........ ........ ...... 100% 362K=6,9s + 0K ........ ........ ........ ........ ...... 100% 2,34M=1,0s -2022-08-18 21:00:59 (362 KB/s) - ‘./ltm-1.0.zip’ gespeichert [2542693/2542693] +2022-10-27 12:57:15 (2,34 MB/s) - ‘./ltm-1.0.zip’ gespeichert [2542693/2542693] ---2022-08-18 21:00:59-- https://dev-www.libreoffice.org/src/libxml2-2.9.14.tar.xz +--2022-10-27 12:57:15-- https://dev-www.libreoffice.org/src/libxml2-2.10.3.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK -Länge: 3129968 (3,0M) [application/octet-stream] -Wird in ‘./libxml2-2.9.14.tar.xz’ gespeichert. +Länge: 2639908 (2,5M) [application/octet-stream] +Wird in ‘./libxml2-2.10.3.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ........ ....... 100% 455K=6,7s + 0K ........ ........ ........ ........ ........ 100% 2,69M=0,9s -2022-08-18 21:01:06 (455 KB/s) - ‘./libxml2-2.9.14.tar.xz’ gespeichert [3129968/3129968] +2022-10-27 12:57:16 (2,69 MB/s) - ‘./libxml2-2.10.3.tar.xz’ gespeichert [2639908/2639908] ---2022-08-18 21:01:06-- https://dev-www.libreoffice.org/src/xmlsec1-1.2.33.tar.gz +--2022-10-27 12:57:16-- https://dev-www.libreoffice.org/src/xmlsec1-1.2.33.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1991955 (1,9M) [application/octet-stream] Wird in ‘./xmlsec1-1.2.33.tar.gz’ gespeichert. - 0K ........ ........ ........ ...... 100% 548K=3,6s + 0K ........ ........ ........ ...... 100% 2,37M=0,8s -2022-08-18 21:01:10 (548 KB/s) - ‘./xmlsec1-1.2.33.tar.gz’ gespeichert [1991955/1991955] +2022-10-27 12:57:17 (2,37 MB/s) - ‘./xmlsec1-1.2.33.tar.gz’ gespeichert [1991955/1991955] ---2022-08-18 21:01:10-- https://dev-www.libreoffice.org/src/libxslt-1.1.35.tar.xz +--2022-10-27 12:57:17-- https://dev-www.libreoffice.org/src/libxslt-1.1.35.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1827548 (1,7M) [application/octet-stream] Wird in ‘./libxslt-1.1.35.tar.xz’ gespeichert. - 0K ........ ........ ........ ... 100% 454K=3,9s + 0K ........ ........ ........ ... 100% 785K=2,3s -2022-08-18 21:01:14 (454 KB/s) - ‘./libxslt-1.1.35.tar.xz’ gespeichert [1827548/1827548] +2022-10-27 12:57:20 (785 KB/s) - ‘./libxslt-1.1.35.tar.xz’ gespeichert [1827548/1827548] ---2022-08-18 21:01:14-- https://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz +--2022-10-27 12:57:20-- https://dev-www.libreoffice.org/src/26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 769268 (751K) [application/octet-stream] Wird in ‘./26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz’ gespeichert. - 0K ........ ... 100% 331K=2,3s + 0K ........ ... 100% 1,06M=0,7s -2022-08-18 21:01:17 (331 KB/s) - ‘./26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz’ gespeichert [769268/769268] +2022-10-27 12:57:21 (1,06 MB/s) - ‘./26b3e95ddf3d9c077c480ea45874b3b8-lp_solve_5.5.tar.gz’ gespeichert [769268/769268] ---2022-08-18 21:01:17-- https://dev-www.libreoffice.org/src/lxml-4.1.1.tgz +--2022-10-27 12:57:21-- https://dev-www.libreoffice.org/src/lxml-4.1.1.tgz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2380804 (2,3M) [application/octet-stream] Wird in ‘./lxml-4.1.1.tgz’ gespeichert. - 0K ........ ........ ........ ........ .... 100% 374K=6,2s + 0K ........ ........ ........ ........ .... 100% 1,31M=1,7s -2022-08-18 21:01:23 (374 KB/s) - ‘./lxml-4.1.1.tgz’ gespeichert [2380804/2380804] +2022-10-27 12:57:23 (1,31 MB/s) - ‘./lxml-4.1.1.tgz’ gespeichert [2380804/2380804] ---2022-08-18 21:01:23-- https://dev-www.libreoffice.org/src/mariadb-connector-c-3.1.8-src.tar.gz +--2022-10-27 12:57:23-- https://dev-www.libreoffice.org/src/mariadb-connector-c-3.1.8-src.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 744745 (727K) [application/octet-stream] Wird in ‘./mariadb-connector-c-3.1.8-src.tar.gz’ gespeichert. - 0K ........ ... 100% 357K=2,0s + 0K ........ ... 100% 1,45M=0,5s -2022-08-18 21:01:25 (357 KB/s) - ‘./mariadb-connector-c-3.1.8-src.tar.gz’ gespeichert [744745/744745] +2022-10-27 12:57:23 (1,45 MB/s) - ‘./mariadb-connector-c-3.1.8-src.tar.gz’ gespeichert [744745/744745] ---2022-08-18 21:01:25-- https://dev-www.libreoffice.org/src/mdds-2.0.3.tar.bz2 +--2022-10-27 12:57:24-- https://dev-www.libreoffice.org/src/mdds-2.0.3.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 516540 (504K) [application/octet-stream] Wird in ‘./mdds-2.0.3.tar.bz2’ gespeichert. - 0K ....... 100% 269K=1,9s + 0K ....... 100% 1,38M=0,4s -2022-08-18 21:01:28 (269 KB/s) - ‘./mdds-2.0.3.tar.bz2’ gespeichert [516540/516540] +2022-10-27 12:57:24 (1,38 MB/s) - ‘./mdds-2.0.3.tar.bz2’ gespeichert [516540/516540] ---2022-08-18 21:01:28-- https://dev-www.libreoffice.org/src/zxing-cpp-1.2.0.tar.gz +--2022-10-27 12:57:24-- https://dev-www.libreoffice.org/src/zxing-cpp-1.2.0.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 97942494 (93M) [application/octet-stream] Wird in ‘./zxing-cpp-1.2.0.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 3% 454K 3m24s - 3072K ........ ........ ........ ........ ........ ........ 6% 593K 2m54s - 6144K ........ ........ ........ ........ ........ ........ 9% 432K 2m59s - 9216K ........ ........ ........ ........ ........ ........ 12% 447K 2m56s - 12288K ........ ........ ........ ........ ........ ........ 16% 533K 2m46s - 15360K ........ ........ ........ ........ ........ ........ 19% 385K 2m46s - 18432K ........ ........ ........ ........ ........ ........ 22% 462K 2m40s - 21504K ........ ........ ........ ........ ........ ........ 25% 554K 2m30s - 24576K ........ ........ ........ ........ ........ ........ 28% 394K 2m27s - 27648K ........ ........ ........ ........ ........ ........ 32% 394K 2m23s - 30720K ........ ........ ........ ........ ........ ........ 35% 354K 2m19s - 33792K ........ ........ ........ ........ ........ ........ 38% 402K 2m14s - 36864K ........ ........ ........ ........ ........ ........ 41% 482K 2m6s - 39936K ........ ........ ........ ........ ........ ........ 44% 450K 1m59s - 43008K ........ ........ ........ ........ ........ ........ 48% 402K 1m53s - 46080K ........ ........ ........ ........ ........ ........ 51% 465K 1m45s - 49152K ........ ........ ........ ........ ........ ........ 54% 361K 1m40s - 52224K ........ ........ ........ ........ ........ ........ 57% 385K 93s - 55296K ........ ........ ........ ........ ........ ........ 61% 419K 86s - 58368K ........ ........ ........ ........ ........ ........ 64% 455K 79s - 61440K ........ ........ ........ ........ ........ ........ 67% 396K 72s - 64512K ........ ........ ........ ........ ........ ........ 70% 483K 65s - 67584K ........ ........ ........ ........ ........ ........ 73% 408K 58s - 70656K ........ ........ ........ ........ ........ ........ 77% 558K 50s - 73728K ........ ........ ........ ........ ........ ........ 80% 581K 43s - 76800K ........ ........ ........ ........ ........ ........ 83% 355K 36s - 79872K ........ ........ ........ ........ ........ ........ 86% 371K 29s - 82944K ........ ........ ........ ........ ........ ........ 89% 580K 22s - 86016K ........ ........ ........ ........ ........ ........ 93% 512K 15s - 89088K ........ ........ ........ ........ ........ ........ 96% 377K 8s - 92160K ........ ........ ........ ........ ........ ........ 99% 419K 1s - 95232K ...... 100% 559K=3m39s + 0K ........ ........ ........ ........ ........ ........ 3% 1,08M 84s + 3072K ........ ........ ........ ........ ........ ........ 6% 934K 88s + 6144K ........ ........ ........ ........ ........ ........ 9% 1,09M 83s + 9216K ........ ........ ........ ........ ........ ........ 12% 1,49M 74s + 12288K ........ ........ ........ ........ ........ ........ 16% 1,99M 65s + 15360K ........ ........ ........ ........ ........ ........ 19% 2,06M 58s + 18432K ........ ........ ........ ........ ........ ........ 22% 1,38M 55s + 21504K ........ ........ ........ ........ ........ ........ 25% 1,74M 51s + 24576K ........ ........ ........ ........ ........ ........ 28% 1,51M 48s + 27648K ........ ........ ........ ........ ........ ........ 32% 1,50M 46s + 30720K ........ ........ ........ ........ ........ ........ 35% 1,25M 44s + 33792K ........ ........ ........ ........ ........ ........ 38% 1,46M 42s + 36864K ........ ........ ........ ........ ........ ........ 41% 1,60M 39s + 39936K ........ ........ ........ ........ ........ ........ 44% 1,16M 37s + 43008K ........ ........ ........ ........ ........ ........ 48% 922K 37s + 46080K ........ ........ ........ ........ ........ ........ 51% 1,45M 34s + 49152K ........ ........ ........ ........ ........ ........ 54% 1006K 32s + 52224K ........ ........ ........ ........ ........ ........ 57% 1,24M 30s + 55296K ........ ........ ........ ........ ........ ........ 61% 1,92M 27s + 58368K ........ ........ ........ ........ ........ ........ 64% 966K 26s + 61440K ........ ........ ........ ........ ........ ........ 67% 1,61M 23s + 64512K ........ ........ ........ ........ ........ ........ 70% 1,84M 21s + 67584K ........ ........ ........ ........ ........ ........ 73% 1,21M 18s + 70656K ........ ........ ........ ........ ........ ........ 77% 1,03M 16s + 73728K ........ ........ ........ ........ ........ ........ 80% 1,62M 14s + 76800K ........ ........ ........ ........ ........ ........ 83% 2,34M 12s + 79872K ........ ........ ........ ........ ........ ........ 86% 1,45M 9s + 82944K ........ ........ ........ ........ ........ ........ 89% 1,41M 7s + 86016K ........ ........ ........ ........ ........ ........ 93% 1,38M 5s + 89088K ........ ........ ........ ........ ........ ........ 96% 1,99M 3s + 92160K ........ ........ ........ ........ ........ ........ 99% 1,66M 0s + 95232K ...... 100% 1,74M=68s -2022-08-18 21:05:07 (437 KB/s) - ‘./zxing-cpp-1.2.0.tar.gz’ gespeichert [97942494/97942494] +2022-10-27 12:58:33 (1,37 MB/s) - ‘./zxing-cpp-1.2.0.tar.gz’ gespeichert [97942494/97942494] ---2022-08-18 21:05:08-- https://dev-www.libreoffice.org/src/mDNSResponder-878.200.35.tar.gz +--2022-10-27 12:58:33-- https://dev-www.libreoffice.org/src/mDNSResponder-878.200.35.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2537410 (2,4M) [application/octet-stream] Wird in ‘./mDNSResponder-878.200.35.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ...... 100% 449K=5,5s + 0K ........ ........ ........ ........ ...... 100% 2,25M=1,1s -2022-08-18 21:05:14 (449 KB/s) - ‘./mDNSResponder-878.200.35.tar.gz’ gespeichert [2537410/2537410] +2022-10-27 12:58:34 (2,25 MB/s) - ‘./mDNSResponder-878.200.35.tar.gz’ gespeichert [2537410/2537410] ---2022-08-18 21:05:14-- https://dev-www.libreoffice.org/src/368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz +--2022-10-27 12:58:35-- https://dev-www.libreoffice.org/src/368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 112756 (110K) [application/octet-stream] Wird in ‘./368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz’ gespeichert. - 0K . 100% 372K=0,3s + 0K . 100% 1,38M=0,08s -2022-08-18 21:05:14 (372 KB/s) - ‘./368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz’ gespeichert [112756/112756] +2022-10-27 12:58:35 (1,38 MB/s) - ‘./368f114c078f94214a308a74c7e991bc-crosextrafonts-20130214.tar.gz’ gespeichert [112756/112756] ---2022-08-18 21:05:14-- https://dev-www.libreoffice.org/src/c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz +--2022-10-27 12:58:35-- https://dev-www.libreoffice.org/src/c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1169488 (1,1M) [application/octet-stream] Wird in ‘./c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz’ gespeichert. - 0K ........ ........ . 100% 436K=2,6s + 0K ........ ........ . 100% 2,51M=0,4s -2022-08-18 21:05:17 (436 KB/s) - ‘./c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz’ gespeichert [1169488/1169488] +2022-10-27 12:58:36 (2,51 MB/s) - ‘./c74b7223abe75949b4af367942d96c7a-crosextrafonts-carlito-20130920.tar.gz’ gespeichert [1169488/1169488] ---2022-08-18 21:05:17-- https://dev-www.libreoffice.org/src/33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip +--2022-10-27 12:58:36-- https://dev-www.libreoffice.org/src/33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 5522795 (5,3M) [application/zip] Wird in ‘./33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 56% 415K 6s - 3072K ........ ........ ........ ........ .... 100% 415K=13s + 0K ........ ........ ........ ........ ........ ........ 56% 2,79M 1s + 3072K ........ ........ ........ ........ .... 100% 1,84M=2,3s -2022-08-18 21:05:31 (415 KB/s) - ‘./33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip’ gespeichert [5522795/5522795] +2022-10-27 12:58:38 (2,28 MB/s) - ‘./33e1e61fab06a547851ed308b4ffef42-dejavu-fonts-ttf-2.37.zip’ gespeichert [5522795/5522795] ---2022-08-18 21:05:31-- https://dev-www.libreoffice.org/src/1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip +--2022-10-27 12:58:38-- https://dev-www.libreoffice.org/src/1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 811606 (793K) [application/zip] Wird in ‘./1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip’ gespeichert. - 0K ........ .... 100% 396K=2,0s + 0K ........ .... 100% 1,64M=0,5s -2022-08-18 21:05:33 (396 KB/s) - ‘./1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip’ gespeichert [811606/811606] +2022-10-27 12:58:39 (1,64 MB/s) - ‘./1725634df4bb3dcb1b2c91a6175f8789-GentiumBasic_1102.zip’ gespeichert [811606/811606] ---2022-08-18 21:05:33-- https://dev-www.libreoffice.org/src/liberation-narrow-fonts-ttf-1.07.6.tar.gz +--2022-10-27 12:58:39-- https://dev-www.libreoffice.org/src/liberation-narrow-fonts-ttf-1.07.6.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 300832 (294K) [application/octet-stream] Wird in ‘./liberation-narrow-fonts-ttf-1.07.6.tar.gz’ gespeichert. - 0K .... 100% 491K=0,6s + 0K .... 100% 1,43M=0,2s -2022-08-18 21:05:34 (491 KB/s) - ‘./liberation-narrow-fonts-ttf-1.07.6.tar.gz’ gespeichert [300832/300832] +2022-10-27 12:58:39 (1,43 MB/s) - ‘./liberation-narrow-fonts-ttf-1.07.6.tar.gz’ gespeichert [300832/300832] ---2022-08-18 21:05:34-- https://dev-www.libreoffice.org/src/liberation-fonts-ttf-2.1.4.tar.gz +--2022-10-27 12:58:39-- https://dev-www.libreoffice.org/src/liberation-fonts-ttf-2.1.4.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2388283 (2,3M) [application/octet-stream] Wird in ‘./liberation-fonts-ttf-2.1.4.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ .... 100% 463K=5,0s + 0K ........ ........ ........ ........ .... 100% 1,17M=1,9s -2022-08-18 21:05:39 (463 KB/s) - ‘./liberation-fonts-ttf-2.1.4.tar.gz’ gespeichert [2388283/2388283] +2022-10-27 12:58:42 (1,17 MB/s) - ‘./liberation-fonts-ttf-2.1.4.tar.gz’ gespeichert [2388283/2388283] ---2022-08-18 21:05:39-- https://dev-www.libreoffice.org/src/e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip +--2022-10-27 12:58:42-- https://dev-www.libreoffice.org/src/e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 6651982 (6,3M) [application/zip] Wird in ‘./e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 47% 443K 8s - 3072K ........ ........ ........ ........ ........ ........ 94% 423K 1s - 6144K ..... 100% 500K=15s + 0K ........ ........ ........ ........ ........ ........ 47% 794K 4s + 3072K ........ ........ ........ ........ ........ ........ 94% 1017K 0s + 6144K ..... 100% 1,00M=7,2s -2022-08-18 21:05:54 (436 KB/s) - ‘./e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip’ gespeichert [6651982/6651982] +2022-10-27 12:58:49 (898 KB/s) - ‘./e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip’ gespeichert [6651982/6651982] ---2022-08-18 21:05:54-- https://dev-www.libreoffice.org/src/907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz +--2022-10-27 12:58:49-- https://dev-www.libreoffice.org/src/907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1338551 (1,3M) [application/octet-stream] Wird in ‘./907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz’ gespeichert. - 0K ........ ........ .... 100% 414K=3,2s + 0K ........ ........ .... 100% 1,29M=1,0s -2022-08-18 21:05:58 (414 KB/s) - ‘./907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz’ gespeichert [1338551/1338551] +2022-10-27 12:58:50 (1,29 MB/s) - ‘./907d6e99f241876695c19ff3db0b8923-source-code-pro-2.030R-ro-1.050R-it.tar.gz’ gespeichert [1338551/1338551] ---2022-08-18 21:05:58-- https://dev-www.libreoffice.org/src/edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz +--2022-10-27 12:58:50-- https://dev-www.libreoffice.org/src/edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1098827 (1,0M) [application/octet-stream] Wird in ‘./edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz’ gespeichert. - 0K ........ ........ 100% 554K=1,9s + 0K ........ ........ 100% 1,64M=0,6s -2022-08-18 21:06:00 (554 KB/s) - ‘./edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz’ gespeichert [1098827/1098827] +2022-10-27 12:58:51 (1,64 MB/s) - ‘./edc4d741888bc0d38e32dbaa17149596-source-sans-pro-2.010R-ro-1.065R-it.tar.gz’ gespeichert [1098827/1098827] ---2022-08-18 21:06:00-- https://dev-www.libreoffice.org/src/source-serif-pro-3.000R.tar.gz +--2022-10-27 12:58:51-- https://dev-www.libreoffice.org/src/source-serif-pro-3.000R.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1135588 (1,1M) [application/octet-stream] Wird in ‘./source-serif-pro-3.000R.tar.gz’ gespeichert. - 0K ........ ........ . 100% 344K=3,2s + 0K ........ ........ . 100% 1,73M=0,6s -2022-08-18 21:06:04 (344 KB/s) - ‘./source-serif-pro-3.000R.tar.gz’ gespeichert [1135588/1135588] +2022-10-27 12:58:52 (1,73 MB/s) - ‘./source-serif-pro-3.000R.tar.gz’ gespeichert [1135588/1135588] ---2022-08-18 21:06:04-- https://dev-www.libreoffice.org/src/EmojiOneColor-SVGinOT-1.3.tar.gz +--2022-10-27 12:58:52-- https://dev-www.libreoffice.org/src/EmojiOneColor-SVGinOT-1.3.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2961759 (2,8M) [application/octet-stream] Wird in ‘./EmojiOneColor-SVGinOT-1.3.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ........ ..... 100% 406K=7,1s + 0K ........ ........ ........ ........ ........ ..... 100% 1,23M=2,3s -2022-08-18 21:06:11 (406 KB/s) - ‘./EmojiOneColor-SVGinOT-1.3.tar.gz’ gespeichert [2961759/2961759] +2022-10-27 12:58:55 (1,23 MB/s) - ‘./EmojiOneColor-SVGinOT-1.3.tar.gz’ gespeichert [2961759/2961759] ---2022-08-18 21:06:11-- https://dev-www.libreoffice.org/src/noto-fonts-20171024.tar.gz +--2022-10-27 12:58:55-- https://dev-www.libreoffice.org/src/noto-fonts-20171024.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 6646182 (6,3M) [application/octet-stream] Wird in ‘./noto-fonts-20171024.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 47% 352K 10s - 3072K ........ ........ ........ ........ ........ ........ 94% 558K 1s - 6144K ..... 100% 356K=15s + 0K ........ ........ ........ ........ ........ ........ 47% 872K 4s + 3072K ........ ........ ........ ........ ........ ........ 94% 1,00M 0s + 6144K ..... 100% 1,81M=6,7s -2022-08-18 21:06:26 (427 KB/s) - ‘./noto-fonts-20171024.tar.gz’ gespeichert [6646182/6646182] +2022-10-27 12:59:02 (969 KB/s) - ‘./noto-fonts-20171024.tar.gz’ gespeichert [6646182/6646182] ---2022-08-18 21:06:27-- https://dev-www.libreoffice.org/src/culmus-0.133.tar.gz +--2022-10-27 12:59:02-- https://dev-www.libreoffice.org/src/culmus-0.133.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1174687 (1,1M) [application/octet-stream] Wird in ‘./culmus-0.133.tar.gz’ gespeichert. - 0K ........ ........ . 100% 403K=2,8s + 0K ........ ........ . 100% 1,46M=0,8s -2022-08-18 21:06:30 (403 KB/s) - ‘./culmus-0.133.tar.gz’ gespeichert [1174687/1174687] +2022-10-27 12:59:03 (1,46 MB/s) - ‘./culmus-0.133.tar.gz’ gespeichert [1174687/1174687] ---2022-08-18 21:06:30-- https://dev-www.libreoffice.org/src/libre-hebrew-1.0.tar.gz +--2022-10-27 12:59:03-- https://dev-www.libreoffice.org/src/libre-hebrew-1.0.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 531276 (519K) [application/octet-stream] Wird in ‘./libre-hebrew-1.0.tar.gz’ gespeichert. - 0K ........ 100% 334K=1,6s + 0K ........ 100% 1,37M=0,4s -2022-08-18 21:06:31 (334 KB/s) - ‘./libre-hebrew-1.0.tar.gz’ gespeichert [531276/531276] +2022-10-27 12:59:03 (1,37 MB/s) - ‘./libre-hebrew-1.0.tar.gz’ gespeichert [531276/531276] ---2022-08-18 21:06:31-- https://dev-www.libreoffice.org/src/alef-1.001.tar.gz +--2022-10-27 12:59:03-- https://dev-www.libreoffice.org/src/alef-1.001.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 93498 (91K) [application/octet-stream] Wird in ‘./alef-1.001.tar.gz’ gespeichert. - 0K . 100% 352K=0,3s + 0K . 100% 1,17M=0,08s -2022-08-18 21:06:32 (352 KB/s) - ‘./alef-1.001.tar.gz’ gespeichert [93498/93498] +2022-10-27 12:59:04 (1,17 MB/s) - ‘./alef-1.001.tar.gz’ gespeichert [93498/93498] ---2022-08-18 21:06:32-- https://dev-www.libreoffice.org/src/Amiri-0.117.zip +--2022-10-27 12:59:04-- https://dev-www.libreoffice.org/src/Amiri-0.117.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2744270 (2,6M) [application/zip] Wird in ‘./Amiri-0.117.zip’ gespeichert. - 0K ........ ........ ........ ........ ........ . 100% 438K=6,1s + 0K ........ ........ ........ ........ ........ . 100% 1,53M=1,7s -2022-08-18 21:06:38 (438 KB/s) - ‘./Amiri-0.117.zip’ gespeichert [2744270/2744270] +2022-10-27 12:59:06 (1,53 MB/s) - ‘./Amiri-0.117.zip’ gespeichert [2744270/2744270] ---2022-08-18 21:06:38-- https://dev-www.libreoffice.org/src/ttf-kacst_2.01+mry.tar.gz +--2022-10-27 12:59:06-- https://dev-www.libreoffice.org/src/ttf-kacst_2.01+mry.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 407400 (398K) [application/octet-stream] Wird in ‘./ttf-kacst_2.01+mry.tar.gz’ gespeichert. - 0K ...... 100% 295K=1,3s + 0K ...... 100% 1,86M=0,2s -2022-08-18 21:06:40 (295 KB/s) - ‘./ttf-kacst_2.01+mry.tar.gz’ gespeichert [407400/407400] +2022-10-27 12:59:06 (1,86 MB/s) - ‘./ttf-kacst_2.01+mry.tar.gz’ gespeichert [407400/407400] ---2022-08-18 21:06:40-- https://dev-www.libreoffice.org/src/ReemKufi-1.2.zip +--2022-10-27 12:59:06-- https://dev-www.libreoffice.org/src/ReemKufi-1.2.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 450612 (440K) [application/zip] Wird in ‘./ReemKufi-1.2.zip’ gespeichert. - 0K ...... 100% 484K=0,9s + 0K ...... 100% 1,86M=0,2s -2022-08-18 21:06:41 (484 KB/s) - ‘./ReemKufi-1.2.zip’ gespeichert [450612/450612] +2022-10-27 12:59:07 (1,86 MB/s) - ‘./ReemKufi-1.2.zip’ gespeichert [450612/450612] ---2022-08-18 21:06:41-- https://dev-www.libreoffice.org/src/Scheherazade-2.100.zip +--2022-10-27 12:59:07-- https://dev-www.libreoffice.org/src/Scheherazade-2.100.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1114645 (1,1M) [application/zip] Wird in ‘./Scheherazade-2.100.zip’ gespeichert. - 0K ........ ........ . 100% 662K=1,6s + 0K ........ ........ . 100% 2,29M=0,5s -2022-08-18 21:06:43 (662 KB/s) - ‘./Scheherazade-2.100.zip’ gespeichert [1114645/1114645] +2022-10-27 12:59:07 (2,29 MB/s) - ‘./Scheherazade-2.100.zip’ gespeichert [1114645/1114645] ---2022-08-18 21:06:43-- https://dev-www.libreoffice.org/src/libmspub-0.1.4.tar.xz +--2022-10-27 12:59:07-- https://dev-www.libreoffice.org/src/libmspub-0.1.4.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 377472 (369K) [application/octet-stream] Wird in ‘./libmspub-0.1.4.tar.xz’ gespeichert. - 0K ..... 100% 639K=0,6s + 0K ..... 100% 1,56M=0,2s -2022-08-18 21:06:44 (639 KB/s) - ‘./libmspub-0.1.4.tar.xz’ gespeichert [377472/377472] +2022-10-27 12:59:08 (1,56 MB/s) - ‘./libmspub-0.1.4.tar.xz’ gespeichert [377472/377472] ---2022-08-18 21:06:44-- https://dev-www.libreoffice.org/src/libmwaw-0.3.21.tar.xz +--2022-10-27 12:59:08-- https://dev-www.libreoffice.org/src/libmwaw-0.3.21.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1457212 (1,4M) [application/octet-stream] Wird in ‘./libmwaw-0.3.21.tar.xz’ gespeichert. - 0K ........ ........ ...... 100% 257K=5,5s + 0K ........ ........ ...... 100% 1,69M=0,8s -2022-08-18 21:06:50 (257 KB/s) - ‘./libmwaw-0.3.21.tar.xz’ gespeichert [1457212/1457212] +2022-10-27 12:59:09 (1,69 MB/s) - ‘./libmwaw-0.3.21.tar.xz’ gespeichert [1457212/1457212] ---2022-08-18 21:06:50-- https://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz +--2022-10-27 12:59:09-- https://dev-www.libreoffice.org/src/a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 4910303 (4,7M) [application/octet-stream] Wird in ‘./a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 64% 410K 4s - 3072K ........ ........ ........ .. 100% 415K=12s + 0K ........ ........ ........ ........ ........ ........ 64% 1,76M 1s + 3072K ........ ........ ........ .. 100% 900K=3,6s -2022-08-18 21:07:02 (412 KB/s) - ‘./a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz’ gespeichert [4910303/4910303] +2022-10-27 12:59:13 (1,30 MB/s) - ‘./a8c2c5b8f09e7ede322d5c602ff6a4b6-mythes-1.2.4.tar.gz’ gespeichert [4910303/4910303] ---2022-08-18 21:07:02-- https://dev-www.libreoffice.org/src/neon-0.31.2.tar.gz +--2022-10-27 12:59:13-- https://dev-www.libreoffice.org/src/neon-0.31.2.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 867914 (848K) [application/octet-stream] Wird in ‘./neon-0.31.2.tar.gz’ gespeichert. - 0K ........ ..... 100% 221K=3,8s + 0K ........ ..... 100% 897K=0,9s -2022-08-18 21:07:06 (221 KB/s) - ‘./neon-0.31.2.tar.gz’ gespeichert [867914/867914] +2022-10-27 12:59:14 (897 KB/s) - ‘./neon-0.31.2.tar.gz’ gespeichert [867914/867914] ---2022-08-18 21:07:06-- https://dev-www.libreoffice.org/src/nss-3.79-with-nspr-4.34.tar.gz +--2022-10-27 12:59:14-- https://dev-www.libreoffice.org/src/nss-3.83-with-nspr-4.34.1.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK -Länge: 86446447 (82M) [application/octet-stream] -Wird in ‘./nss-3.79-with-nspr-4.34.tar.gz’ gespeichert. - - 0K ........ ........ ........ ........ ........ ........ 3% 438K 3m6s - 3072K ........ ........ ........ ........ ........ ........ 7% 507K 2m47s - 6144K ........ ........ ........ ........ ........ ........ 10% 345K 2m59s - 9216K ........ ........ ........ ........ ........ ........ 14% 500K 2m45s - 12288K ........ ........ ........ ........ ........ ........ 18% 375K 2m43s - 15360K ........ ........ ........ ........ ........ ........ 21% 427K 2m36s - 18432K ........ ........ ........ ........ ........ ........ 25% 464K 2m27s - 21504K ........ ........ ........ ........ ........ ........ 29% 370K 2m22s - 24576K ........ ........ ........ ........ ........ ........ 32% 540K 2m12s - 27648K ........ ........ ........ ........ ........ ........ 36% 392K 2m6s - 30720K ........ ........ ........ ........ ........ ........ 40% 517K 1m57s - 33792K ........ ........ ........ ........ ........ ........ 43% 436K 1m50s - 36864K ........ ........ ........ ........ ........ ........ 47% 374K 1m44s - 39936K ........ ........ ........ ........ ........ ........ 50% 451K 96s - 43008K ........ ........ ........ ........ ........ ........ 54% 376K 90s - 46080K ........ ........ ........ ........ ........ ........ 58% 354K 84s - 49152K ........ ........ ........ ........ ........ ........ 61% 435K 76s - 52224K ........ ........ ........ ........ ........ ........ 65% 414K 69s - 55296K ........ ........ ........ ........ ........ ........ 69% 334K 63s - 58368K ........ ........ ........ ........ ........ ........ 72% 497K 55s - 61440K ........ ........ ........ ........ ........ ........ 76% 455K 47s - 64512K ........ ........ ........ ........ ........ ........ 80% 342K 40s - 67584K ........ ........ ........ ........ ........ ........ 83% 566K 33s - 70656K ........ ........ ........ ........ ........ ........ 87% 390K 25s - 73728K ........ ........ ........ ........ ........ ........ 90% 230K 19s - 76800K ........ ........ ........ ........ ........ ........ 94% 334K 11s - 79872K ........ ........ ........ ........ ........ ........ 98% 449K 4s - 82944K ........ ........ ....... 100% 394K=3m29s +Länge: 86464335 (82M) [application/octet-stream] +Wird in ‘./nss-3.83-with-nspr-4.34.1.tar.gz’ gespeichert. + + 0K ........ ........ ........ ........ ........ ........ 3% 1,31M 61s + 3072K ........ ........ ........ ........ ........ ........ 7% 2,18M 47s + 6144K ........ ........ ........ ........ ........ ........ 10% 1,98M 42s + 9216K ........ ........ ........ ........ ........ ........ 14% 1,64M 41s + 12288K ........ ........ ........ ........ ........ ........ 18% 2,06M 38s + 15360K ........ ........ ........ ........ ........ ........ 21% 1,40M 38s + 18432K ........ ........ ........ ........ ........ ........ 25% 1,33M 38s + 21504K ........ ........ ........ ........ ........ ........ 29% 1,60M 36s + 24576K ........ ........ ........ ........ ........ ........ 32% 1,05M 36s + 27648K ........ ........ ........ ........ ........ ........ 36% 1,40M 35s + 30720K ........ ........ ........ ........ ........ ........ 40% 1,36M 33s + 33792K ........ ........ ........ ........ ........ ........ 43% 1,13M 32s + 36864K ........ ........ ........ ........ ........ ........ 47% 940K 31s + 39936K ........ ........ ........ ........ ........ ........ 50% 1,42M 29s + 43008K ........ ........ ........ ........ ........ ........ 54% 967K 28s + 46080K ........ ........ ........ ........ ........ ........ 58% 1005K 26s + 49152K ........ ........ ........ ........ ........ ........ 61% 1,31M 24s + 52224K ........ ........ ........ ........ ........ ........ 65% 1,84M 21s + 55296K ........ ........ ........ ........ ........ ........ 69% 1,18M 19s + 58368K ........ ........ ........ ........ ........ ........ 72% 968K 17s + 61440K ........ ........ ........ ........ ........ ........ 76% 747K 15s + 64512K ........ ........ ........ ........ ........ ........ 80% 1,23M 13s + 67584K ........ ........ ........ ........ ........ ........ 83% 1,70M 11s + 70656K ........ ........ ........ ........ ........ ........ 87% 761K 8s + 73728K ........ ........ ........ ........ ........ ........ 90% 919K 6s + 76800K ........ ........ ........ ........ ........ ........ 94% 1,34M 4s + 79872K ........ ........ ........ ........ ........ ........ 98% 1,46M 1s + 82944K ........ ........ ....... 100% 1,23M=67s -2022-08-18 21:10:35 (404 KB/s) - ‘./nss-3.79-with-nspr-4.34.tar.gz’ gespeichert [86446447/86446447] +2022-10-27 13:00:21 (1,23 MB/s) - ‘./nss-3.83-with-nspr-4.34.1.tar.gz’ gespeichert [86464335/86464335] ---2022-08-18 21:10:36-- https://dev-www.libreoffice.org/src/libodfgen-0.1.8.tar.xz +--2022-10-27 13:00:22-- https://dev-www.libreoffice.org/src/libodfgen-0.1.8.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 386156 (377K) [application/octet-stream] Wird in ‘./libodfgen-0.1.8.tar.xz’ gespeichert. - 0K ..... 100% 549K=0,7s + 0K ..... 100% 1,07M=0,3s -2022-08-18 21:10:37 (549 KB/s) - ‘./libodfgen-0.1.8.tar.xz’ gespeichert [386156/386156] +2022-10-27 13:00:23 (1,07 MB/s) - ‘./libodfgen-0.1.8.tar.xz’ gespeichert [386156/386156] ---2022-08-18 21:10:37-- https://dev-www.libreoffice.org/src/openldap-2.4.59.tgz +--2022-10-27 13:00:23-- https://dev-www.libreoffice.org/src/openldap-2.4.59.tgz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 5886272 (5,6M) [application/octet-stream] Wird in ‘./openldap-2.4.59.tgz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 53% 450K 6s - 3072K ........ ........ ........ ........ ........ . 100% 229K=19s + 0K ........ ........ ........ ........ ........ ........ 53% 1,08M 2s + 3072K ........ ........ ........ ........ ........ . 100% 1,66M=4,4s -2022-08-18 21:10:56 (311 KB/s) - ‘./openldap-2.4.59.tgz’ gespeichert [5886272/5886272] +2022-10-27 13:00:27 (1,29 MB/s) - ‘./openldap-2.4.59.tgz’ gespeichert [5886272/5886272] ---2022-08-18 21:10:56-- https://dev-www.libreoffice.org/src/openssl-1.1.1l.tar.gz +--2022-10-27 13:00:27-- https://dev-www.libreoffice.org/src/openssl-1.1.1q.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK -Länge: 9834044 (9,4M) [application/octet-stream] -Wird in ‘./openssl-1.1.1l.tar.gz’ gespeichert. +Länge: 9864061 (9,4M) [application/octet-stream] +Wird in ‘./openssl-1.1.1q.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 31% 409K 16s - 3072K ........ ........ ........ ........ ........ ........ 63% 351K 9s - 6144K ........ ........ ........ ........ ........ ........ 95% 460K 1s - 9216K ...... 100% 806K=23s + 0K ........ ........ ........ ........ ........ ........ 31% 1,49M 4s + 3072K ........ ........ ........ ........ ........ ........ 63% 1,63M 2s + 6144K ........ ........ ........ ........ ........ ........ 95% 1,67M 0s + 9216K ...... 100% 1,38M=6,0s -2022-08-18 21:11:19 (410 KB/s) - ‘./openssl-1.1.1l.tar.gz’ gespeichert [9834044/9834044] +2022-10-27 13:00:33 (1,58 MB/s) - ‘./openssl-1.1.1q.tar.gz’ gespeichert [9864061/9864061] ---2022-08-18 21:11:19-- https://dev-www.libreoffice.org/src/liborcus-0.17.2.tar.bz2 +--2022-10-27 13:00:34-- https://dev-www.libreoffice.org/src/liborcus-0.17.2.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2123970 (2,0M) [application/octet-stream] Wird in ‘./liborcus-0.17.2.tar.bz2’ gespeichert. - 0K ........ ........ ........ ........ 100% 747K=2,8s + 0K ........ ........ ........ ........ 100% 2,16M=0,9s -2022-08-18 21:11:22 (747 KB/s) - ‘./liborcus-0.17.2.tar.bz2’ gespeichert [2123970/2123970] +2022-10-27 13:00:35 (2,16 MB/s) - ‘./liborcus-0.17.2.tar.bz2’ gespeichert [2123970/2123970] ---2022-08-18 21:11:22-- https://dev-www.libreoffice.org/src/libpagemaker-0.0.4.tar.xz +--2022-10-27 13:00:35-- https://dev-www.libreoffice.org/src/libpagemaker-0.0.4.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 306496 (299K) [application/octet-stream] Wird in ‘./libpagemaker-0.0.4.tar.xz’ gespeichert. - 0K .... 100% 217K=1,4s + 0K .... 100% 1,79M=0,2s -2022-08-18 21:11:24 (217 KB/s) - ‘./libpagemaker-0.0.4.tar.xz’ gespeichert [306496/306496] +2022-10-27 13:00:35 (1,79 MB/s) - ‘./libpagemaker-0.0.4.tar.xz’ gespeichert [306496/306496] ---2022-08-18 21:11:24-- https://dev-www.libreoffice.org/src/pdfium-4699.tar.bz2 +--2022-10-27 13:00:35-- https://dev-www.libreoffice.org/src/pdfium-4699.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 8780890 (8,4M) [application/octet-stream] Wird in ‘./pdfium-4699.tar.bz2’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 35% 564K 10s - 3072K ........ ........ ........ ........ ........ ........ 71% 499K 5s - 6144K ........ ........ ........ ........ ..... 100% 510K=16s + 0K ........ ........ ........ ........ ........ ........ 35% 2,55M 2s + 3072K ........ ........ ........ ........ ........ ........ 71% 2,53M 1s + 6144K ........ ........ ........ ........ ..... 100% 2,69M=3,2s -2022-08-18 21:11:41 (524 KB/s) - ‘./pdfium-4699.tar.bz2’ gespeichert [8780890/8780890] +2022-10-27 13:00:39 (2,58 MB/s) - ‘./pdfium-4699.tar.bz2’ gespeichert [8780890/8780890] ---2022-08-18 21:11:41-- https://dev-www.libreoffice.org/src/poppler-21.11.0.tar.xz +--2022-10-27 13:00:39-- https://dev-www.libreoffice.org/src/poppler-22.09.0.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK -Länge: 1783592 (1,7M) [application/octet-stream] -Wird in ‘./poppler-21.11.0.tar.xz’ gespeichert. +Länge: 1842704 (1,8M) [application/octet-stream] +Wird in ‘./poppler-22.09.0.tar.xz’ gespeichert. - 0K ........ ........ ........ ... 100% 541K=3,2s + 0K ........ ........ ........ .... 100% 1,40M=1,3s -2022-08-18 21:11:44 (541 KB/s) - ‘./poppler-21.11.0.tar.xz’ gespeichert [1783592/1783592] +2022-10-27 13:00:40 (1,40 MB/s) - ‘./poppler-22.09.0.tar.xz’ gespeichert [1842704/1842704] ---2022-08-18 21:11:44-- https://dev-www.libreoffice.org/src/poppler-data-0.4.10.tar.gz +--2022-10-27 13:00:40-- https://dev-www.libreoffice.org/src/poppler-data-0.4.11.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK -Länge: 4497684 (4,3M) [application/octet-stream] -Wird in ‘./poppler-data-0.4.10.tar.gz’ gespeichert. +Länge: 4497282 (4,3M) [application/octet-stream] +Wird in ‘./poppler-data-0.4.11.tar.gz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 69% 539K 2s - 3072K ........ ........ .... 100% 526K=8,2s + 0K ........ ........ ........ ........ ........ ........ 69% 928K 1s + 3072K ........ ........ .... 100% 1,15M=4,4s -2022-08-18 21:11:53 (535 KB/s) - ‘./poppler-data-0.4.10.tar.gz’ gespeichert [4497684/4497684] +2022-10-27 13:00:45 (992 KB/s) - ‘./poppler-data-0.4.11.tar.gz’ gespeichert [4497282/4497282] ---2022-08-18 21:11:53-- https://dev-www.libreoffice.org/src/postgresql-13.5.tar.bz2 +--2022-10-27 13:00:45-- https://dev-www.libreoffice.org/src/postgresql-13.8.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK -Länge: 21186674 (20M) [application/octet-stream] -Wird in ‘./postgresql-13.5.tar.bz2’ gespeichert. +Länge: 21397381 (20M) [application/octet-stream] +Wird in ‘./postgresql-13.8.tar.bz2’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 14% 470K 38s - 3072K ........ ........ ........ ........ ........ ........ 29% 555K 29s - 6144K ........ ........ ........ ........ ........ ........ 44% 564K 22s - 9216K ........ ........ ........ ........ ........ ........ 59% 445K 17s - 12288K ........ ........ ........ ........ ........ ........ 74% 386K 11s - 15360K ........ ........ ........ ........ ........ ........ 89% 489K 5s - 18432K ........ ........ ........ ........ ... 100% 427K=44s + 0K ........ ........ ........ ........ ........ ........ 14% 922K 19s + 3072K ........ ........ ........ ........ ........ ........ 29% 915K 16s + 6144K ........ ........ ........ ........ ........ ........ 44% 1,50M 11s + 9216K ........ ........ ........ ........ ........ ........ 58% 2,15M 7s + 12288K ........ ........ ........ ........ ........ ........ 73% 1,17M 5s + 15360K ........ ........ ........ ........ ........ ........ 88% 1,42M 2s + 18432K ........ ........ ........ ........ ...... 100% 1,24M=17s -2022-08-18 21:12:37 (471 KB/s) - ‘./postgresql-13.5.tar.bz2’ gespeichert [21186674/21186674] +2022-10-27 13:01:02 (1,22 MB/s) - ‘./postgresql-13.8.tar.bz2’ gespeichert [21397381/21397381] ---2022-08-18 21:12:37-- https://dev-www.libreoffice.org/src/Python-3.8.10.tar.xz +--2022-10-27 13:01:02-- https://dev-www.libreoffice.org/src/Python-3.8.15.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK -Länge: 18433456 (18M) [application/octet-stream] -Wird in ‘./Python-3.8.10.tar.xz’ gespeichert. +Länge: 19038408 (18M) [application/octet-stream] +Wird in ‘./Python-3.8.15.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 17% 443K 34s - 3072K ........ ........ ........ ........ ........ ........ 34% 367K 30s - 6144K ........ ........ ........ ........ ........ ........ 51% 422K 22s - 9216K ........ ........ ........ ........ ........ ........ 68% 495K 13s - 12288K ........ ........ ........ ........ ........ ........ 85% 364K 6s - 15360K ........ ........ ........ ........ ........ . 100% 459K=43s + 0K ........ ........ ........ ........ ........ ........ 16% 2,08M 7s + 3072K ........ ........ ........ ........ ........ ........ 33% 1,94M 6s + 6144K ........ ........ ........ ........ ........ ........ 49% 1,49M 5s + 9216K ........ ........ ........ ........ ........ ........ 66% 951K 4s + 12288K ........ ........ ........ ........ ........ ........ 82% 1,10M 2s + 15360K ........ ........ ........ ........ ........ ........ 99% 1,53M 0s + 18432K .. 100% 2,09M=13s -2022-08-18 21:13:20 (419 KB/s) - ‘./Python-3.8.10.tar.xz’ gespeichert [18433456/18433456] +2022-10-27 13:01:15 (1,40 MB/s) - ‘./Python-3.8.15.tar.xz’ gespeichert [19038408/19038408] ---2022-08-18 21:13:20-- https://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz +--2022-10-27 13:01:16-- https://dev-www.libreoffice.org/src/libqxp-0.0.2.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 341760 (334K) [application/octet-stream] Wird in ‘./libqxp-0.0.2.tar.xz’ gespeichert. - 0K ..... 100% 300K=1,1s + 0K ..... 100% 1,37M=0,2s -2022-08-18 21:13:22 (300 KB/s) - ‘./libqxp-0.0.2.tar.xz’ gespeichert [341760/341760] +2022-10-27 13:01:16 (1,37 MB/s) - ‘./libqxp-0.0.2.tar.xz’ gespeichert [341760/341760] ---2022-08-18 21:13:22-- https://dev-www.libreoffice.org/src/a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz +--2022-10-27 13:01:16-- https://dev-www.libreoffice.org/src/a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1886657 (1,8M) [application/octet-stream] Wird in ‘./a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz’ gespeichert. - 0K ........ ........ ........ .... 100% 399K=4,6s + 0K ........ ........ ........ .... 100% 2,03M=0,9s -2022-08-18 21:13:27 (399 KB/s) - ‘./a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz’ gespeichert [1886657/1886657] +2022-10-27 13:01:17 (2,03 MB/s) - ‘./a39f6c07ddb20d7dd2ff1f95fa21e2cd-raptor2-2.0.15.tar.gz’ gespeichert [1886657/1886657] ---2022-08-18 21:13:27-- https://dev-www.libreoffice.org/src/1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz +--2022-10-27 13:01:17-- https://dev-www.libreoffice.org/src/1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1595647 (1,5M) [application/octet-stream] Wird in ‘./1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz’ gespeichert. - 0K ........ ........ ........ 100% 501K=3,1s + 0K ........ ........ ........ 100% 2,04M=0,7s -2022-08-18 21:13:30 (501 KB/s) - ‘./1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz’ gespeichert [1595647/1595647] +2022-10-27 13:01:18 (2,04 MB/s) - ‘./1f5def51ca0026cd192958ef07228b52-rasqal-0.9.33.tar.gz’ gespeichert [1595647/1595647] ---2022-08-18 21:13:30-- https://dev-www.libreoffice.org/src/e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz +--2022-10-27 13:01:18-- https://dev-www.libreoffice.org/src/e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1621566 (1,5M) [application/octet-stream] Wird in ‘./e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz’ gespeichert. - 0K ........ ........ ........ 100% 377K=4,2s + 0K ........ ........ ........ 100% 1,21M=1,3s -2022-08-18 21:13:35 (377 KB/s) - ‘./e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz’ gespeichert [1621566/1621566] +2022-10-27 13:01:20 (1,21 MB/s) - ‘./e5be03eda13ef68aabab6e42aa67715e-redland-1.0.17.tar.gz’ gespeichert [1621566/1621566] ---2022-08-18 21:13:35-- https://dev-www.libreoffice.org/src/librevenge-0.0.4.tar.bz2 +--2022-10-27 13:01:20-- https://dev-www.libreoffice.org/src/librevenge-0.0.4.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 529833 (517K) [application/octet-stream] Wird in ‘./librevenge-0.0.4.tar.bz2’ gespeichert. - 0K ........ 100% 687K=0,8s + 0K ........ 100% 1,10M=0,5s -2022-08-18 21:13:36 (687 KB/s) - ‘./librevenge-0.0.4.tar.bz2’ gespeichert [529833/529833] +2022-10-27 13:01:20 (1,10 MB/s) - ‘./librevenge-0.0.4.tar.bz2’ gespeichert [529833/529833] ---2022-08-18 21:13:36-- https://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip +--2022-10-27 13:01:20-- https://dev-www.libreoffice.org/src/798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 1521926 (1,5M) [application/zip] Wird in ‘./798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip’ gespeichert. - 0K ........ ........ ....... 100% 447K=3,3s + 0K ........ ........ ....... 100% 923K=1,6s -2022-08-18 21:13:39 (447 KB/s) - ‘./798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip’ gespeichert [1521926/1521926] +2022-10-27 13:01:22 (923 KB/s) - ‘./798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip’ gespeichert [1521926/1521926] ---2022-08-18 21:13:39-- https://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip +--2022-10-27 13:01:22-- https://dev-www.libreoffice.org/src/35c94d2df8893241173de1d16b6034c0-swingExSrc.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 9796 (9,6K) [application/zip] Wird in ‘./35c94d2df8893241173de1d16b6034c0-swingExSrc.zip’ gespeichert. - 0K 100% 250M=0s + 0K 100% 323M=0s -2022-08-18 21:13:39 (250 MB/s) - ‘./35c94d2df8893241173de1d16b6034c0-swingExSrc.zip’ gespeichert [9796/9796] +2022-10-27 13:01:23 (323 MB/s) - ‘./35c94d2df8893241173de1d16b6034c0-swingExSrc.zip’ gespeichert [9796/9796] ---2022-08-18 21:13:39-- https://dev-www.libreoffice.org/src/serf-1.3.9.tar.bz2 +--2022-10-27 13:01:23-- https://dev-www.libreoffice.org/src/serf-1.3.9.tar.bz2 Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 145132 (142K) [application/octet-stream] Wird in ‘./serf-1.3.9.tar.bz2’ gespeichert. - 0K .. 100% 396K=0,4s + 0K .. 100% 759K=0,2s -2022-08-18 21:13:40 (396 KB/s) - ‘./serf-1.3.9.tar.bz2’ gespeichert [145132/145132] +2022-10-27 13:01:23 (759 KB/s) - ‘./serf-1.3.9.tar.bz2’ gespeichert [145132/145132] ---2022-08-18 21:13:40-- https://dev-www.libreoffice.org/src/skia-m97-a7230803d64ae9d44f4e1282444801119a3ae967.tar.xz +--2022-10-27 13:01:23-- https://dev-www.libreoffice.org/src/skia-m97-a7230803d64ae9d44f4e1282444801119a3ae967.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 11826600 (11M) [application/octet-stream] Wird in ‘./skia-m97-a7230803d64ae9d44f4e1282444801119a3ae967.tar.xz’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 26% 401K 21s - 3072K ........ ........ ........ ........ ........ ........ 53% 349K 14s - 6144K ........ ........ ........ ........ ........ ........ 79% 390K 6s - 9216K ........ ........ ........ ........ .... 100% 314K=32s + 0K ........ ........ ........ ........ ........ ........ 26% 1,47M 6s + 3072K ........ ........ ........ ........ ........ ........ 53% 1,87M 3s + 6144K ........ ........ ........ ........ ........ ........ 79% 1,21M 2s + 9216K ........ ........ ........ ........ .... 100% 1,26M=7,9s -2022-08-18 21:14:12 (363 KB/s) - ‘./skia-m97-a7230803d64ae9d44f4e1282444801119a3ae967.tar.xz’ gespeichert [11826600/11826600] +2022-10-27 13:01:31 (1,42 MB/s) - ‘./skia-m97-a7230803d64ae9d44f4e1282444801119a3ae967.tar.xz’ gespeichert [11826600/11826600] ---2022-08-18 21:14:12-- https://dev-www.libreoffice.org/src/libstaroffice-0.0.7.tar.xz +--2022-10-27 13:01:31-- https://dev-www.libreoffice.org/src/libstaroffice-0.0.7.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 707920 (691K) [application/octet-stream] Wird in ‘./libstaroffice-0.0.7.tar.xz’ gespeichert. - 0K ........ .. 100% 402K=1,7s + 0K ........ .. 100% 1,50M=0,5s -2022-08-18 21:14:14 (402 KB/s) - ‘./libstaroffice-0.0.7.tar.xz’ gespeichert [707920/707920] +2022-10-27 13:01:32 (1,50 MB/s) - ‘./libstaroffice-0.0.7.tar.xz’ gespeichert [707920/707920] ---2022-08-18 21:14:14-- https://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz +--2022-10-27 13:01:32-- https://dev-www.libreoffice.org/src/0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 96939 (95K) [application/octet-stream] Wird in ‘./0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz’ gespeichert. - 0K . 100% 509K=0,2s + 0K . 100% 1,22M=0,08s -2022-08-18 21:14:15 (509 KB/s) - ‘./0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz’ gespeichert [96939/96939] +2022-10-27 13:01:32 (1,22 MB/s) - ‘./0168229624cfac409e766913506961a8-ucpp-1.3.2.tar.gz’ gespeichert [96939/96939] ---2022-08-18 21:14:15-- https://dev-www.libreoffice.org/src/libvisio-0.1.7.tar.xz +--2022-10-27 13:01:32-- https://dev-www.libreoffice.org/src/libvisio-0.1.7.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 854296 (834K) [application/octet-stream] Wird in ‘./libvisio-0.1.7.tar.xz’ gespeichert. - 0K ........ ..... 100% 380K=2,2s + 0K ........ ..... 100% 1,53M=0,5s -2022-08-18 21:14:17 (380 KB/s) - ‘./libvisio-0.1.7.tar.xz’ gespeichert [854296/854296] +2022-10-27 13:01:33 (1,53 MB/s) - ‘./libvisio-0.1.7.tar.xz’ gespeichert [854296/854296] ---2022-08-18 21:14:17-- https://dev-www.libreoffice.org/src/libwpd-0.10.3.tar.xz +--2022-10-27 13:01:33-- https://dev-www.libreoffice.org/src/libwpd-0.10.3.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 534712 (522K) [application/octet-stream] Wird in ‘./libwpd-0.10.3.tar.xz’ gespeichert. - 0K ........ 100% 397K=1,3s + 0K ........ 100% 1,12M=0,5s -2022-08-18 21:14:19 (397 KB/s) - ‘./libwpd-0.10.3.tar.xz’ gespeichert [534712/534712] +2022-10-27 13:01:34 (1,12 MB/s) - ‘./libwpd-0.10.3.tar.xz’ gespeichert [534712/534712] ---2022-08-18 21:14:19-- https://dev-www.libreoffice.org/src/libwpg-0.3.3.tar.xz +--2022-10-27 13:01:34-- https://dev-www.libreoffice.org/src/libwpg-0.3.3.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 328664 (321K) [application/octet-stream] Wird in ‘./libwpg-0.3.3.tar.xz’ gespeichert. - 0K ..... 100% 342K=0,9s + 0K ..... 100% 1,05M=0,3s -2022-08-18 21:14:20 (342 KB/s) - ‘./libwpg-0.3.3.tar.xz’ gespeichert [328664/328664] +2022-10-27 13:01:34 (1,05 MB/s) - ‘./libwpg-0.3.3.tar.xz’ gespeichert [328664/328664] ---2022-08-18 21:14:20-- https://dev-www.libreoffice.org/src/libwps-0.4.12.tar.xz +--2022-10-27 13:01:34-- https://dev-www.libreoffice.org/src/libwps-0.4.12.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 713008 (696K) [application/octet-stream] Wird in ‘./libwps-0.4.12.tar.xz’ gespeichert. - 0K ........ .. 100% 687K=1,0s + 0K ........ .. 100% 1,17M=0,6s -2022-08-18 21:14:21 (687 KB/s) - ‘./libwps-0.4.12.tar.xz’ gespeichert [713008/713008] +2022-10-27 13:01:35 (1,17 MB/s) - ‘./libwps-0.4.12.tar.xz’ gespeichert [713008/713008] ---2022-08-18 21:14:21-- https://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip +--2022-10-27 13:01:35-- https://dev-www.libreoffice.org/src/a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 23150 (23K) [application/zip] Wird in ‘./a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip’ gespeichert. - 0K 100% 14,2M=0,002s + 0K 100% 13,7M=0,002s -2022-08-18 21:14:21 (14,2 MB/s) - ‘./a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip’ gespeichert [23150/23150] +2022-10-27 13:01:35 (13,7 MB/s) - ‘./a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip’ gespeichert [23150/23150] ---2022-08-18 21:14:21-- https://dev-www.libreoffice.org/src/zlib-1.2.12.tar.xz +--2022-10-27 13:01:36-- https://dev-www.libreoffice.org/src/zlib-1.2.13.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK -Länge: 1288864 (1,2M) [application/octet-stream] -Wird in ‘./zlib-1.2.12.tar.xz’ gespeichert. +Länge: 1296496 (1,2M) [application/octet-stream] +Wird in ‘./zlib-1.2.13.tar.xz’ gespeichert. - 0K ........ ........ ... 100% 380K=3,3s + 0K ........ ........ ... 100% 1,64M=0,8s -2022-08-18 21:14:25 (380 KB/s) - ‘./zlib-1.2.12.tar.xz’ gespeichert [1288864/1288864] +2022-10-27 13:01:37 (1,64 MB/s) - ‘./zlib-1.2.13.tar.xz’ gespeichert [1296496/1296496] ---2022-08-18 21:14:25-- https://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz +--2022-10-27 13:01:37-- https://dev-www.libreoffice.org/src/libzmf-0.0.2.tar.xz Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 320952 (313K) [application/octet-stream] Wird in ‘./libzmf-0.0.2.tar.xz’ gespeichert. - 0K .... 100% 661K=0,5s + 0K .... 100% 1,38M=0,2s -2022-08-18 21:14:26 (661 KB/s) - ‘./libzmf-0.0.2.tar.xz’ gespeichert [320952/320952] +2022-10-27 13:01:37 (1,38 MB/s) - ‘./libzmf-0.0.2.tar.xz’ gespeichert [320952/320952] ---2022-08-18 21:14:26-- https://dev-www.libreoffice.org/extern/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf +--2022-10-27 13:01:37-- https://dev-www.libreoffice.org/extern/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 207992 (203K) [application/octet-stream] Wird in ‘./f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf’ gespeichert. - 0K ... 100% 535K=0,4s + 0K ... 100% 1,28M=0,2s -2022-08-18 21:14:26 (535 KB/s) - ‘./f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf’ gespeichert [207992/207992] +2022-10-27 13:01:37 (1,28 MB/s) - ‘./f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf’ gespeichert [207992/207992] ---2022-08-18 21:14:26-- https://dev-www.libreoffice.org/extern/odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar +--2022-10-27 13:01:37-- https://dev-www.libreoffice.org/extern/odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 27397202 (26M) [application/java-archive] Wird in ‘./odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar’ gespeichert. - 0K ........ ........ ........ ........ ........ ........ 11% 429K 55s - 3072K ........ ........ ........ ........ ........ ........ 22% 522K 44s - 6144K ........ ........ ........ ........ ........ ........ 34% 323K 43s - 9216K ........ ........ ........ ........ ........ ........ 45% 417K 35s - 12288K ........ ........ ........ ........ ........ ........ 57% 348K 29s - 15360K ........ ........ ........ ........ ........ ........ 68% 374K 21s - 18432K ........ ........ ........ ........ ........ ........ 80% 452K 13s - 21504K ........ ........ ........ ........ ........ ........ 91% 468K 5s - 24576K ........ ........ ........ ........ .. 100% 402K=66s + 0K ........ ........ ........ ........ ........ ........ 11% 2,01M 12s + 3072K ........ ........ ........ ........ ........ ........ 22% 1,43M 12s + 6144K ........ ........ ........ ........ ........ ........ 34% 1,46M 11s + 9216K ........ ........ ........ ........ ........ ........ 45% 1,03M 10s + 12288K ........ ........ ........ ........ ........ ........ 57% 1,75M 8s + 15360K ........ ........ ........ ........ ........ ........ 68% 1,82M 5s + 18432K ........ ........ ........ ........ ........ ........ 80% 1,32M 3s + 21504K ........ ........ ........ ........ ........ ........ 91% 850K 2s + 24576K ........ ........ ........ ........ .. 100% 1,08M=20s -2022-08-18 21:15:32 (407 KB/s) - ‘./odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar’ gespeichert [27397202/27397202] +2022-10-27 13:01:57 (1,32 MB/s) - ‘./odfvalidator-0.9.0-RC2-SNAPSHOT-jar-with-dependencies-2726ab578664434a545f8379a01a9faffac0ae73.jar’ gespeichert [27397202/27397202] ---2022-08-18 21:15:33-- https://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar +--2022-10-27 13:01:58-- https://dev-www.libreoffice.org/extern/8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar Auflösen des Hostnamens dev-www.libreoffice.org (dev-www.libreoffice.org) … 89.238.68.201, 2a00:1828:a012:201::1 Verbindungsaufbau zu dev-www.libreoffice.org (dev-www.libreoffice.org)|89.238.68.201|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 2448421 (2,3M) [application/java-archive] Wird in ‘./8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar’ gespeichert. - 0K ........ ........ ........ ........ ..... 100% 334K=7,2s + 0K ........ ........ ........ ........ ..... 100% 1020K=2,3s -2022-08-18 21:15:40 (334 KB/s) - ‘./8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar’ gespeichert [2448421/2448421] +2022-10-27 13:02:00 (1020 KB/s) - ‘./8249374c274932a21846fa7629c2aa9b-officeotron-0.7.4-master.jar’ gespeichert [2448421/2448421] Binary files /tmp/tmp7lj43w29/QEYlBQyeWR/libreoffice-7.3.6/tarballs/libepoxy-1.5.10.tar.gz and /tmp/tmp7lj43w29/sw5eMqaWXV/libreoffice-7.3.7/tarballs/libepoxy-1.5.10.tar.gz differ Binary files /tmp/tmp7lj43w29/QEYlBQyeWR/libreoffice-7.3.6/tarballs/libepoxy-1.5.9.tar.xz and /tmp/tmp7lj43w29/sw5eMqaWXV/libreoffice-7.3.7/tarballs/libepoxy-1.5.9.tar.xz differ Binary files /tmp/tmp7lj43w29/QEYlBQyeWR/libreoffice-7.3.6/tarballs/libpng-1.6.37.tar.xz and /tmp/tmp7lj43w29/sw5eMqaWXV/libreoffice-7.3.7/tarballs/libpng-1.6.37.tar.xz differ Binary files /tmp/tmp7lj43w29/QEYlBQyeWR/libreoffice-7.3.6/tarballs/libpng-1.6.38.tar.xz and /tmp/tmp7lj43w29/sw5eMqaWXV/libreoffice-7.3.7/tarballs/libpng-1.6.38.tar.xz differ Binary files /tmp/tmp7lj43w29/QEYlBQyeWR/libreoffice-7.3.6/tarballs/libxml2-2.10.3.tar.xz and /tmp/tmp7lj43w29/sw5eMqaWXV/libreoffice-7.3.7/tarballs/libxml2-2.10.3.tar.xz differ Binary files /tmp/tmp7lj43w29/QEYlBQyeWR/libreoffice-7.3.6/tarballs/libxml2-2.9.14.tar.xz and /tmp/tmp7lj43w29/sw5eMqaWXV/libreoffice-7.3.7/tarballs/libxml2-2.9.14.tar.xz differ Binary files /tmp/tmp7lj43w29/QEYlBQyeWR/libreoffice-7.3.6/tarballs/openssl-1.1.1l.tar.gz and /tmp/tmp7lj43w29/sw5eMqaWXV/libreoffice-7.3.7/tarballs/openssl-1.1.1l.tar.gz differ Binary files /tmp/tmp7lj43w29/QEYlBQyeWR/libreoffice-7.3.6/tarballs/openssl-1.1.1q.tar.gz and /tmp/tmp7lj43w29/sw5eMqaWXV/libreoffice-7.3.7/tarballs/openssl-1.1.1q.tar.gz differ Binary files /tmp/tmp7lj43w29/QEYlBQyeWR/libreoffice-7.3.6/tarballs/poppler-21.11.0.tar.xz and /tmp/tmp7lj43w29/sw5eMqaWXV/libreoffice-7.3.7/tarballs/poppler-21.11.0.tar.xz differ Binary files /tmp/tmp7lj43w29/QEYlBQyeWR/libreoffice-7.3.6/tarballs/poppler-22.09.0.tar.xz and /tmp/tmp7lj43w29/sw5eMqaWXV/libreoffice-7.3.7/tarballs/poppler-22.09.0.tar.xz differ Binary files /tmp/tmp7lj43w29/QEYlBQyeWR/libreoffice-7.3.6/tarballs/poppler-data-0.4.10.tar.gz and /tmp/tmp7lj43w29/sw5eMqaWXV/libreoffice-7.3.7/tarballs/poppler-data-0.4.10.tar.gz differ Binary files /tmp/tmp7lj43w29/QEYlBQyeWR/libreoffice-7.3.6/tarballs/poppler-data-0.4.11.tar.gz and /tmp/tmp7lj43w29/sw5eMqaWXV/libreoffice-7.3.7/tarballs/poppler-data-0.4.11.tar.gz differ Binary files /tmp/tmp7lj43w29/QEYlBQyeWR/libreoffice-7.3.6/tarballs/zlib-1.2.12.tar.xz and /tmp/tmp7lj43w29/sw5eMqaWXV/libreoffice-7.3.7/tarballs/zlib-1.2.12.tar.xz differ Binary files /tmp/tmp7lj43w29/QEYlBQyeWR/libreoffice-7.3.6/tarballs/zlib-1.2.13.tar.xz and /tmp/tmp7lj43w29/sw5eMqaWXV/libreoffice-7.3.7/tarballs/zlib-1.2.13.tar.xz differ diff -Nru libreoffice-7.3.6/test/source/xmltesttools.cxx libreoffice-7.3.7/test/source/xmltesttools.cxx --- libreoffice-7.3.6/test/source/xmltesttools.cxx 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/test/source/xmltesttools.cxx 2022-10-27 10:11:14.000000000 +0000 @@ -148,9 +148,11 @@ xmlXPathFreeObject(pXmlObj); return convertedVal; } +#if LIBXML_VERSION < 21000 || defined(LIBXML_XPTR_LOCS_ENABLED) case XPATH_POINT: case XPATH_RANGE: case XPATH_LOCATIONSET: +#endif case XPATH_USERS: case XPATH_XSLT_TREE: xmlXPathFreeObject(pXmlObj); diff -Nru libreoffice-7.3.6/translations/source/af/filter/source/config/fragments/filters.po libreoffice-7.3.7/translations/source/af/filter/source/config/fragments/filters.po --- libreoffice-7.3.6/translations/source/af/filter/source/config/fragments/filters.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/af/filter/source/config/fragments/filters.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-21 11:44+0000\n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" "Last-Translator: Paul Roos \n" -"Language-Team: Afrikaans \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: 1560974401.000000\n" #. FR4Ff @@ -314,7 +314,7 @@ "UIName\n" "value.text" msgid "JPEG - Joint Photographic Experts Group" -msgstr "JPEG - Joint Photographic Experts Group" +msgstr "1JPEG - Joint Photographic Experts Group" #. XMvhS #: Lotus.xcu @@ -1644,7 +1644,7 @@ "UIName\n" "value.text" msgid "GIF - Graphics Interchange Format" -msgstr "GIF - Graphics Interchange Formaat" +msgstr "GIF - Graphics Interchange Format" #. AoLrD #: draw_html_Export.xcu @@ -1714,7 +1714,7 @@ "UIName\n" "value.text" msgid "WMF - Windows Metafile" -msgstr "WMF - Windows Metalêer" +msgstr "WMF - Windows Metafile" #. 3fXiG #: impress8.xcu diff -Nru libreoffice-7.3.6/translations/source/af/sfx2/messages.po libreoffice-7.3.7/translations/source/af/sfx2/messages.po --- libreoffice-7.3.6/translations/source/af/sfx2/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/af/sfx2/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-11-17 12:36+0000\n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" "Last-Translator: Paul Roos \n" -"Language-Team: Afrikaans \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: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1560975251.000000\n" #. bHbFE @@ -1662,19 +1662,19 @@ #: 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 "Die hoofwagwoord is in 'n verouderde formaat gestoor, jy behoort dit te hernu" #. ysChU #: include/sfx2/strings.hrc:295 msgctxt "STR_REFRESH_PASSWORD" msgid "Refresh Password" -msgstr "" +msgstr "Vernuwe wagwoord" #. Wkvpi #: include/sfx2/strings.hrc:297 msgctxt "STR_CLOSE_PANE" msgid "Close Pane" -msgstr "Sluit Paneel." +msgstr "Sluit Paneel" #. kej8D #. Translators: default Impress template names diff -Nru libreoffice-7.3.6/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.3.7/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.3.6/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/am/officecfg/registry/data/org/openoffice/Office/UI.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://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-08-18 16:38+0000\n" +"PO-Revision-Date: 2022-10-13 08:53+0000\n" "Last-Translator: Samson B \n" "Language-Team: Amharic \n" "Language: am\n" @@ -18624,7 +18624,7 @@ "Label\n" "value.text" msgid "Line Spacing: 1.15" -msgstr "" +msgstr "የ መስመር ክፍተት: 1.15" #. q8wJt #: GenericCommands.xcu diff -Nru libreoffice-7.3.6/translations/source/an/chart2/messages.po libreoffice-7.3.7/translations/source/an/chart2/messages.po --- libreoffice-7.3.6/translations/source/an/chart2/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/an/chart2/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-01 11:51+0200\n" -"PO-Revision-Date: 2022-01-17 16:39+0000\n" +"PO-Revision-Date: 2022-10-13 08:53+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Aragonese \n" +"Language-Team: Aragonese \n" "Language: an\n" "MIME-Version: 1.0\n" "Content-Type: text/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: 1540149291.000000\n" #. NCRDD @@ -1668,7 +1668,7 @@ #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:166 msgctxt "dlg_InsertErrorBars|RB_PERCENT" msgid "_Percentage" -msgstr "" +msgstr "_Percentache" #. bGDm2 #: chart2/uiconfig/ui/dlg_InsertErrorBars.ui:175 @@ -2713,7 +2713,7 @@ #: chart2/uiconfig/ui/sidebartype.ui:222 msgctxt "sidebartype|percent" msgid "Percent" -msgstr "" +msgstr "Percentache" #. iDSaa #: chart2/uiconfig/ui/sidebartype.ui:236 @@ -3578,7 +3578,7 @@ #: chart2/uiconfig/ui/tp_ChartType.ui:288 msgctxt "tp_ChartType|percent" msgid "Percent" -msgstr "" +msgstr "Percentache" #. EVNAR #: chart2/uiconfig/ui/tp_ChartType.ui:296 @@ -4156,7 +4156,7 @@ #: chart2/uiconfig/ui/tp_ErrorBars.ui:99 msgctxt "tp_ErrorBars|RB_PERCENT" msgid "_Percentage" -msgstr "" +msgstr "_Percentache" #. kqgrm #: chart2/uiconfig/ui/tp_ErrorBars.ui:110 diff -Nru libreoffice-7.3.6/translations/source/an/cui/messages.po libreoffice-7.3.7/translations/source/an/cui/messages.po --- libreoffice-7.3.6/translations/source/an/cui/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/an/cui/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-01 11:51+0200\n" -"PO-Revision-Date: 2022-08-31 12:21+0000\n" +"PO-Revision-Date: 2022-10-13 08:53+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \n" "Language: an\n" @@ -40,7 +40,7 @@ #: cui/inc/numcategories.hrc:21 msgctxt "numberingformatpage|liststore1" msgid "Percent" -msgstr "" +msgstr "Percentache" #. 6C4cy #: cui/inc/numcategories.hrc:22 diff -Nru libreoffice-7.3.6/translations/source/an/dbaccess/messages.po libreoffice-7.3.7/translations/source/an/dbaccess/messages.po --- libreoffice-7.3.6/translations/source/an/dbaccess/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/an/dbaccess/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-01 11:51+0200\n" -"PO-Revision-Date: 2022-01-17 16:38+0000\n" +"PO-Revision-Date: 2022-10-13 08:53+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Aragonese \n" +"Language-Team: Aragonese \n" "Language: an\n" "MIME-Version: 1.0\n" "Content-Type: text/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: 1524566312.000000\n" #. BiN6g @@ -2545,7 +2545,7 @@ #: dbaccess/inc/templwin.hrc:44 msgctxt "STRARY_SVT_DOCINFO" msgid "Date" -msgstr "" +msgstr "Calendata" #. eHFA4 #: dbaccess/inc/templwin.hrc:45 diff -Nru libreoffice-7.3.6/translations/source/an/filter/source/config/fragments/filters.po libreoffice-7.3.7/translations/source/an/filter/source/config/fragments/filters.po --- libreoffice-7.3.6/translations/source/an/filter/source/config/fragments/filters.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/an/filter/source/config/fragments/filters.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "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: 2018-07-01 22:41+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2022-10-13 08:53+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" +"Language-Team: Aragonese \n" "Language: an\n" "MIME-Version: 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: 1530484870.000000\n" #. FR4Ff @@ -64,7 +64,7 @@ "UIName\n" "value.text" msgid "Apple Pages" -msgstr "" +msgstr "Apple Pages" #. nWjHd #: BMP___MS_Windows.xcu diff -Nru libreoffice-7.3.6/translations/source/an/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.3.7/translations/source/an/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.3.6/translations/source/an/officecfg/registry/data/org/openoffice/Office/UI.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/an/officecfg/registry/data/org/openoffice/Office/UI.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://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-08-18 16:38+0000\n" +"PO-Revision-Date: 2022-10-13 08:53+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \n" "Language: an\n" @@ -4062,7 +4062,7 @@ "Label\n" "value.text" msgid "Percent" -msgstr "" +msgstr "Percentache" #. 2AvVJ #: CalcCommands.xcu diff -Nru libreoffice-7.3.6/translations/source/an/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.3.7/translations/source/an/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.3.6/translations/source/an/officecfg/registry/data/org/openoffice/Office.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/an/officecfg/registry/data/org/openoffice/Office.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-10-01 05:36+0000\n" +"PO-Revision-Date: 2022-10-13 08:53+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Aragonese \n" +"Language-Team: Aragonese \n" "Language: an\n" "MIME-Version: 1.0\n" "Content-Type: text/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: 1542022401.000000\n" @@ -13718,7 +13718,6 @@ #. kbKMe #: UI.xcu -#, fuzzy msgctxt "" "UI.xcu\n" "..UI.FilterClassification.GlobalFilters.Classes.com.sun.star.sheet.SpreadsheetDocument\n" @@ -13729,7 +13728,6 @@ #. MUhBD #: UI.xcu -#, fuzzy msgctxt "" "UI.xcu\n" "..UI.FilterClassification.GlobalFilters.Classes.com.sun.star.presentation.PresentationDocument\n" diff -Nru libreoffice-7.3.6/translations/source/an/sc/messages.po libreoffice-7.3.7/translations/source/an/sc/messages.po --- libreoffice-7.3.6/translations/source/an/sc/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/an/sc/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-01 11:53+0200\n" -"PO-Revision-Date: 2022-04-11 14:45+0000\n" +"PO-Revision-Date: 2022-10-13 08:53+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: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542022406.000000\n" #. kBovX @@ -3402,7 +3402,7 @@ #: sc/inc/globstr.hrc:521 msgctxt "STR_PERCENT" msgid "Percent" -msgstr "" +msgstr "Percentache" #. 7G5Cc #: sc/inc/globstr.hrc:522 @@ -21272,7 +21272,7 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:220 msgctxt "conditionalentry|colscalemin" msgid "Percent" -msgstr "" +msgstr "Percentache" #. tEhTB #: sc/uiconfig/scalc/ui/conditionalentry.ui:221 @@ -21319,7 +21319,7 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:239 msgctxt "conditionalentry|colscalemiddle" msgid "Percent" -msgstr "" +msgstr "Percentache" #. 83BhU #: sc/uiconfig/scalc/ui/conditionalentry.ui:240 @@ -21366,7 +21366,7 @@ #: sc/uiconfig/scalc/ui/conditionalentry.ui:258 msgctxt "conditionalentry|colscalemax" msgid "Percent" -msgstr "" +msgstr "Percentache" #. oTJU7 #: sc/uiconfig/scalc/ui/conditionalentry.ui:259 @@ -21904,7 +21904,7 @@ #: sc/uiconfig/scalc/ui/conditionaliconset.ui:47 msgctxt "conditionaliconset|listbox" msgid "Percent" -msgstr "" +msgstr "Percentache" #. hdHXA #: sc/uiconfig/scalc/ui/conditionaliconset.ui:48 @@ -21963,7 +21963,7 @@ #: sc/uiconfig/scalc/ui/conflictsdialog.ui:175 msgctxt "conflictsdialog|date" msgid "Date" -msgstr "" +msgstr "Calendata" #. tgZHu #: sc/uiconfig/scalc/ui/conflictsdialog.ui:189 @@ -22502,7 +22502,7 @@ #: sc/uiconfig/scalc/ui/databaroptions.ui:140 msgctxt "databaroptions|min" msgid "Percent" -msgstr "" +msgstr "Percentache" #. Ckh2x #: sc/uiconfig/scalc/ui/databaroptions.ui:141 @@ -22553,7 +22553,7 @@ #: sc/uiconfig/scalc/ui/databaroptions.ui:165 msgctxt "databaroptions|max" msgid "Percent" -msgstr "" +msgstr "Percentache" #. 5QJ3k #: sc/uiconfig/scalc/ui/databaroptions.ui:166 @@ -32028,7 +32028,7 @@ #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:77 msgctxt "sidebarnumberformat|numberformatcombobox" msgid "Percent" -msgstr "" +msgstr "Percentache" #. bHC79 #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:78 diff -Nru libreoffice-7.3.6/translations/source/an/sfx2/messages.po libreoffice-7.3.7/translations/source/an/sfx2/messages.po --- libreoffice-7.3.6/translations/source/an/sfx2/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/an/sfx2/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-08-18 16:39+0000\n" +"PO-Revision-Date: 2022-10-13 08:54+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Aragonese \n" "Language: an\n" @@ -1247,7 +1247,7 @@ #: include/sfx2/strings.hrc:234 msgctxt "STR_PDF_EXPORT_SEND" msgid "Send" -msgstr "" +msgstr "Ninviar" #. 9HHQw #: include/sfx2/strings.hrc:235 @@ -4902,10 +4902,9 @@ #. eECt7 #: sfx2/uiconfig/ui/templatedlg.ui:212 -#, fuzzy msgctxt "templatedlg|applist" msgid "Spreadsheets" -msgstr "Fuella de calculo" +msgstr "Fuellas de calculo" #. ajLbV #: sfx2/uiconfig/ui/templatedlg.ui:213 diff -Nru libreoffice-7.3.6/translations/source/an/sw/messages.po libreoffice-7.3.7/translations/source/an/sw/messages.po --- libreoffice-7.3.6/translations/source/an/sw/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/an/sw/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-01 11:53+0200\n" -"PO-Revision-Date: 2022-06-06 18:34+0000\n" +"PO-Revision-Date: 2022-10-13 08:53+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: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542195186.000000\n" #. v3oJv @@ -16847,7 +16847,7 @@ #: sw/uiconfig/swriter/ui/inputwinmenu.ui:38 msgctxt "inputwinmenu|phd" msgid "Percent" -msgstr "" +msgstr "Percentache" #. AE86C #: sw/uiconfig/swriter/ui/inputwinmenu.ui:42 diff -Nru libreoffice-7.3.6/translations/source/an/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po libreoffice-7.3.7/translations/source/an/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po --- libreoffice-7.3.6/translations/source/an/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/an/swext/mediawiki/src/registry/data/org/openoffice/Office/Custom.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-06-22 20:57+0000\n" -"Last-Translator: Anonymous Pootle User\n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2022-10-13 08:53+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" +"Language-Team: Aragonese \n" "Language: an\n" "MIME-Version: 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: 1371934654.000000\n" #. sc9Hg @@ -194,7 +194,7 @@ "Dlg_SendButton\n" "value.text" msgid "~Send" -msgstr "" +msgstr "~Ninviar" #. j2hBK #: WikiExtension.xcu diff -Nru libreoffice-7.3.6/translations/source/an/vcl/messages.po libreoffice-7.3.7/translations/source/an/vcl/messages.po --- libreoffice-7.3.6/translations/source/an/vcl/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/an/vcl/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-01 11:54+0200\n" -"PO-Revision-Date: 2022-05-18 09:18+0000\n" +"PO-Revision-Date: 2022-10-13 08:53+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: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1542022411.000000\n" #. k5jTM @@ -142,19 +142,19 @@ #: vcl/inc/print.hrc:53 msgctxt "RID_STR_PAPERNAMES" msgid "C" -msgstr "" +msgstr "C" #. Yfrzk #: vcl/inc/print.hrc:54 msgctxt "RID_STR_PAPERNAMES" msgid "D" -msgstr "" +msgstr "D" #. Ahd2X #: vcl/inc/print.hrc:55 msgctxt "RID_STR_PAPERNAMES" msgid "E" -msgstr "" +msgstr "E" #. 9quGe #: vcl/inc/print.hrc:56 diff -Nru libreoffice-7.3.6/translations/source/ast/chart2/messages.po libreoffice-7.3.7/translations/source/ast/chart2/messages.po --- libreoffice-7.3.6/translations/source/ast/chart2/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/chart2/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-01 11:51+0200\n" -"PO-Revision-Date: 2022-07-15 17:24+0000\n" +"PO-Revision-Date: 2022-10-13 08:53+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -1145,7 +1145,7 @@ #: chart2/uiconfig/ui/chartdatadialog.ui:8 msgctxt "chartdatadialog|ChartDataDialog" msgid "Data Table" -msgstr "Tabla datos" +msgstr "Tabla de datos" #. ywdAz #: chart2/uiconfig/ui/chartdatadialog.ui:72 @@ -1535,7 +1535,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:406 msgctxt "dlg_DataLabel|label1" msgid "Attribute Options" -msgstr "" +msgstr "Opciones del atributu" #. gE7CA #: chart2/uiconfig/ui/dlg_DataLabel.ui:458 @@ -2663,7 +2663,7 @@ #: chart2/uiconfig/ui/sidebartype.ui:222 msgctxt "sidebartype|percent" msgid "Percent" -msgstr "" +msgstr "Porcentaxe" #. iDSaa #: chart2/uiconfig/ui/sidebartype.ui:236 @@ -3851,7 +3851,7 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:338 msgctxt "tp_DataLabel|label1" msgid "Attribute Options" -msgstr "" +msgstr "Opciones del atributu" #. avLCL #: chart2/uiconfig/ui/tp_DataLabel.ui:390 @@ -3947,7 +3947,7 @@ #: chart2/uiconfig/ui/tp_DataSource.ui:73 msgctxt "tp_DataSource|FT_SERIES" msgid "Data _series:" -msgstr "_Series de datos" +msgstr "_Series de datos:" #. oFoeg #: chart2/uiconfig/ui/tp_DataSource.ui:116 diff -Nru libreoffice-7.3.6/translations/source/ast/cui/messages.po libreoffice-7.3.7/translations/source/ast/cui/messages.po --- libreoffice-7.3.6/translations/source/ast/cui/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/cui/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-01 11:51+0200\n" -"PO-Revision-Date: 2022-08-31 12:21+0000\n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -38,7 +38,7 @@ #: cui/inc/numcategories.hrc:21 msgctxt "numberingformatpage|liststore1" msgid "Percent" -msgstr "Porcentax" +msgstr "Porcentaxe" #. 6C4cy #: cui/inc/numcategories.hrc:22 @@ -1905,7 +1905,7 @@ #: cui/inc/strings.hrc:349 msgctxt "RID_SVXSTR_REPLACE_TEMPLATES" msgid "Apply Styles" -msgstr "Aplicar estilos" +msgstr "Aplicar los estilos" #. 6MGUe #: cui/inc/strings.hrc:350 @@ -6981,7 +6981,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:1203 msgctxt "colorconfigwin|protectedcells" msgid "Protected cells background" -msgstr "" +msgstr "Fondu de les caxelles protexíes" #. mA6HV #: cui/uiconfig/ui/colorconfigwin.ui:1219 @@ -6999,7 +6999,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:1287 msgctxt "colorconfigwin|draw" msgid "Drawing / Presentation" -msgstr "Dibuxu / Presentación" +msgstr "Dibuxu/presentación" #. yELpi #: cui/uiconfig/ui/colorconfigwin.ui:1339 @@ -8241,7 +8241,7 @@ #: cui/uiconfig/ui/dimensionlinestabpage.ui:452 msgctxt "dimensionlinestabpage|TSB_SHOW_UNIT" msgid "Show _measurement units" -msgstr "Ver les unidaes de _midida" +msgstr "Amosar les unidaes de _midida" #. cJRA9 #: cui/uiconfig/ui/dimensionlinestabpage.ui:461 @@ -21282,7 +21282,7 @@ #: cui/uiconfig/ui/textflowpage.ui:181 msgctxt "textflowpage|labelMaxNum" msgid "_Maximum consecutive hyphenated lines" -msgstr "Ringleres guionaes consecutives _máximes" +msgstr "Ringleres guionaes consecutives má_ximes" #. GgHhP #: cui/uiconfig/ui/textflowpage.ui:192 diff -Nru libreoffice-7.3.6/translations/source/ast/dbaccess/messages.po libreoffice-7.3.7/translations/source/ast/dbaccess/messages.po --- libreoffice-7.3.6/translations/source/ast/dbaccess/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/dbaccess/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-01 11:51+0200\n" -"PO-Revision-Date: 2022-07-15 17:24+0000\n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -812,7 +812,7 @@ #: dbaccess/inc/strings.hrc:146 msgctxt "RID_STR_ROW_HEIGHT" msgid "Row Height..." -msgstr "Altor de Filera..." +msgstr "Altor de filera..." #. F8EEk #: dbaccess/inc/strings.hrc:147 @@ -4076,7 +4076,7 @@ #: dbaccess/uiconfig/ui/password.ui:8 msgctxt "password|PasswordDialog" msgid "Change Password" -msgstr "Cambiar la contraseña" +msgstr "Camudar la contraseña" #. GDZAN #: dbaccess/uiconfig/ui/password.ui:128 diff -Nru libreoffice-7.3.6/translations/source/ast/desktop/messages.po libreoffice-7.3.7/translations/source/ast/desktop/messages.po --- libreoffice-7.3.6/translations/source/ast/desktop/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/desktop/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-07-15 17:24+0000\n" +"PO-Revision-Date: 2022-10-13 08:53+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -1073,7 +1073,7 @@ #: desktop/uiconfig/ui/licensedialog.ui:160 msgctxt "licensedialog|label5" msgid "Accept the License Agreement for the extension by pressing the 'Accept' button." -msgstr "Aceutar l'alcuerdu de llicencia de la estensión primiendo'l botón «Aceutar»." +msgstr "Aceuta l'alcuerdu de llicencia de la estensión calcando'l botón «Aceutar»." #. ydBcE #: desktop/uiconfig/ui/licensedialog.ui:173 diff -Nru libreoffice-7.3.6/translations/source/ast/editeng/messages.po libreoffice-7.3.7/translations/source/ast/editeng/messages.po --- libreoffice-7.3.6/translations/source/ast/editeng/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/editeng/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-07-15 17:25+0000\n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -1626,13 +1626,13 @@ #: include/editeng/editrids.hrc:287 msgctxt "RID_EDITUNDO_SETATTRIBS" msgid "Apply attributes" -msgstr "Aplicar atributos" +msgstr "Aplicar los atributos" #. tys5a #: include/editeng/editrids.hrc:288 msgctxt "RID_EDITUNDO_RESETATTRIBS" msgid "Reset attributes" -msgstr "Reafitar atributos" +msgstr "Reafitar los atributos" #. 6mjB7 #: include/editeng/editrids.hrc:289 @@ -1644,7 +1644,7 @@ #: include/editeng/editrids.hrc:290 msgctxt "RID_EDITUNDO_SETSTYLE" msgid "Apply Styles" -msgstr "Aplicar estilos" +msgstr "Aplicar los estilos" #. M7ADh #: include/editeng/editrids.hrc:291 @@ -1744,7 +1744,7 @@ #: include/editeng/editrids.hrc:309 msgctxt "RID_OUTLUNDO_ATTR" msgid "Apply attributes" -msgstr "Aplicar atributos" +msgstr "Aplicar los atributos" #. YECNh #: include/editeng/editrids.hrc:310 diff -Nru libreoffice-7.3.6/translations/source/ast/filter/messages.po libreoffice-7.3.7/translations/source/ast/filter/messages.po --- libreoffice-7.3.6/translations/source/ast/filter/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/filter/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-08-31 12:21+0000\n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -383,7 +383,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:89 msgctxt "pdfgeneralpage|selection" msgid "_Selection" -msgstr "_Seleición" +msgstr "E_sbilla" #. RQeDb #: filter/uiconfig/ui/pdfgeneralpage.ui:99 diff -Nru libreoffice-7.3.6/translations/source/ast/fpicker/messages.po libreoffice-7.3.7/translations/source/ast/fpicker/messages.po --- libreoffice-7.3.6/translations/source/ast/fpicker/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/fpicker/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-01 11:52+0200\n" -"PO-Revision-Date: 2022-07-15 17:24+0000\n" +"PO-Revision-Date: 2022-10-13 08:53+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -413,7 +413,7 @@ #: include/fpicker/strings.hrc:18 msgctxt "STR_SVT_FILEPICKER_FILTER_OPTIONS" msgid "~Edit filter settings" -msgstr "~Editar la configuración de peñeres" +msgstr "~Editar los axustes de peñeres" #. k7Sdb #: include/fpicker/strings.hrc:19 @@ -497,7 +497,7 @@ msgstr "" "Yá esiste un ficheru nomáu «$filename$».\n" "\n" -"¿Quier trocalu?" +"¿Quies trocalu?" #. z6Eo3 #: include/fpicker/strings.hrc:32 diff -Nru libreoffice-7.3.6/translations/source/ast/helpcontent2/source/auxiliary.po libreoffice-7.3.7/translations/source/ast/helpcontent2/source/auxiliary.po --- libreoffice-7.3.6/translations/source/ast/helpcontent2/source/auxiliary.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/helpcontent2/source/auxiliary.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-04-26 12:55+0000\n" +"PO-Revision-Date: 2022-10-13 10:17+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: 1532004324.000000\n" #. fEEXD @@ -86,7 +86,7 @@ "07010305\n" "node.text" msgid "ScriptForge Library" -msgstr "" +msgstr "Biblioteca ScriptForge" #. Vkt9E #: sbasic.tree @@ -185,7 +185,7 @@ "0803\n" "node.text" msgid "Functions Types and Operators" -msgstr "Tipos de funciones y operadores" +msgstr "Tribes de funciones y operadores" #. DSUE2 #: scalc.tree @@ -356,7 +356,7 @@ "0901\n" "node.text" msgid "General Information" -msgstr "" +msgstr "Información xeneral" #. xU49Q #: sdraw.tree @@ -428,7 +428,7 @@ "1105\n" "node.text" msgid "Printing" -msgstr "Imprentar" +msgstr "Imprentación" #. G8GoF #: sdraw.tree diff -Nru libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/sbasic/guide.po libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/sbasic/guide.po --- libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/sbasic/guide.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/sbasic/guide.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-08-31 14:00+0000\n" +"PO-Revision-Date: 2022-10-13 10:18+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -1076,7 +1076,7 @@ "tit\n" "help.text" msgid "Changing the Properties of Controls in the Dialog Editor" -msgstr "Cambéu de les propiedaes de los campos de control nel Editor de diálogos" +msgstr "Cambéu de les propiedaes de los controles nel Editor de diálogos" #. PDQCc #: control_properties.xhp @@ -1094,7 +1094,7 @@ "hd_id3145786\n" "help.text" msgid "Changing the Properties of Controls in the Dialog Editor" -msgstr "Cambéu de les propiedaes de los campos de control nel Editor de diálogos" +msgstr "Cambéu de les propiedaes de los controles nel Editor de diálogos" #. Es8Xy #: control_properties.xhp @@ -1193,7 +1193,7 @@ "tit\n" "help.text" msgid "Creating Controls in the Dialog Editor" -msgstr "Creación de campos de control nel Editor de diálogos" +msgstr "Creación controles nel Editor de diálogos" #. yeHTt #: insert_control.xhp @@ -1202,7 +1202,7 @@ "bm_id3149182\n" "help.text" msgid "controls; creating in the dialog editordialog editor;creating controls" -msgstr "campos de control;crear nel editor de diálogoseditor de diálogos;crear campos de control" +msgstr "controles;crear nel editor de diálogoseditor de diálogos;crear controles" #. UAc5k #: insert_control.xhp @@ -1679,7 +1679,7 @@ "hd_id3150042\n" "help.text" msgid "Read or Edit Properties of Controls in the Program" -msgstr "Lleer o editar propiedaes de los campos de control nel programa" +msgstr "Lleer o editar propiedaes de los controles nel programa" #. SahL8 #: sample_code.xhp diff -Nru libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/sbasic/python.po libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/sbasic/python.po --- libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/sbasic/python.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/sbasic/python.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-10 10:40+0000\n" +"PO-Revision-Date: 2022-10-13 10:18+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" #. naSFZ #: main0000.xhp @@ -3613,4 +3613,4 @@ "par_id351633599611244\n" "help.text" msgid "PythonShell function in ScriptForge.Exception service" -msgstr "" +msgstr "Función PythonShell del serviciu ScriptForge.Exception" diff -Nru libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/sbasic/shared/02.po libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/sbasic/shared/02.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/sbasic/shared/02.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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: 2020-08-04 11:16+0000\n" +"PO-Revision-Date: 2022-10-13 10:18+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" -"Language-Team: Asturian \n" +"Language-Team: Asturian \n" "Language: ast\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1494863184.000000\n" #. 6Kkin @@ -1004,7 +1004,7 @@ "tit\n" "help.text" msgid "Insert Controls" -msgstr "Inxertar campos de control" +msgstr "Inxertar controles" #. F2psp #: 20000000.xhp @@ -1022,7 +1022,7 @@ "hd_id3150402\n" "help.text" msgid "Insert Controls" -msgstr "Inxertar campos de control" +msgstr "Inxertar controles" #. jnfj9 #: 20000000.xhp @@ -1049,7 +1049,7 @@ "par_id3153749\n" "help.text" msgid "Insert Controls" -msgstr "Inxertar campos de control" +msgstr "Inxertar controles" #. BjneK #: 20000000.xhp @@ -1391,7 +1391,7 @@ "hd_id3149330\n" "help.text" msgid "Progress Bar" -msgstr "Barra de progresión" +msgstr "Barra de progresu" #. SDEqL #: 20000000.xhp diff -Nru libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/sbasic/shared/03.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/sbasic/shared/03.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-08-31 14:00+0000\n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -248,7 +248,7 @@ "par_id851613847558931\n" "help.text" msgid "%PRODUCTNAME Basic" -msgstr "" +msgstr "%PRODUCTNAME BASIC" #. jv7Z3 #: lib_ScriptForge.xhp @@ -4766,7 +4766,7 @@ "par_id501611617808220\n" "help.text" msgid "Activating a sheet makes sense only if it is performed on a Calc document. To make sure you have a Calc document at hand you can use the isCalc property of the document object, which returns True if it is a Calc document and False otherwise." -msgstr "" +msgstr "L'activación d'una fueya tien sentíu namái si se fai nun documentu de Calc. P'asegurase de que se ta tratando con un documentu de Calc, pues emplegar la propiedá isCalc del oxetu del documentu, que devuelve True tratándose d'un documentu de Calc o False si nun ye'l casu." #. KWFFF #: sf_calc.xhp @@ -7079,7 +7079,7 @@ "par_id67160078807636\n" "help.text" msgid "Description" -msgstr "" +msgstr "Descripción" #. 5yKq5 #: sf_chart.xhp @@ -9572,7 +9572,7 @@ "par_id571588333908716\n" "help.text" msgid "No" -msgstr "" +msgstr "Non" #. 6L9ke #: sf_dialogcontrol.xhp @@ -9617,7 +9617,7 @@ "par_id501583774433513\n" "help.text" msgid "Yes" -msgstr "" +msgstr "Sí" #. rDJFC #: sf_dialogcontrol.xhp @@ -17636,7 +17636,7 @@ "hd_id141618777179310\n" "help.text" msgid "Additional examples" -msgstr "" +msgstr "Más exemplos" #. JopFS #: sf_formcontrol.xhp @@ -22316,7 +22316,7 @@ "par_id861612377611438\n" "help.text" msgid "\"*\" represents zero, one, or multiple characters." -msgstr "" +msgstr "«*» representa ceru, un o dellos caráuteres." #. eLYBF #: sf_string.xhp @@ -23000,7 +23000,7 @@ "bas_id551612386931680\n" "help.text" msgid "' An example with a ScriptForge Dictionary" -msgstr "" +msgstr "' Un exemplu con un diccionariu de ScriptForge" #. vvADG #: sf_string.xhp @@ -23369,7 +23369,7 @@ "tit\n" "help.text" msgid "ScriptForge.TextStream service" -msgstr "" +msgstr "Serviciu ScriptForge.TextStream" #. cEA5U #: sf_textstream.xhp @@ -23378,7 +23378,7 @@ "bm_id351585330787295\n" "help.text" msgid "ScriptForge.TextStream service" -msgstr "" +msgstr "Serviciu ScriptForge.TextStream" #. nBJsE #: sf_textstream.xhp diff -Nru libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/sbasic/shared.po libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/sbasic/shared.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/sbasic/shared.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-08-31 14:00+0000\n" +"PO-Revision-Date: 2022-10-13 10:18+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -2318,7 +2318,7 @@ "hd_id3154614\n" "help.text" msgid "Variable Types" -msgstr "Tipos de variable" +msgstr "Tribes de variables" #. T5to5 #: 01020100.xhp @@ -37346,7 +37346,7 @@ "par_id3154216\n" "help.text" msgid "AutoText" -msgstr "AutoTestu" +msgstr "Testu automáticu" #. uhEms #: 05060700.xhp @@ -42332,7 +42332,7 @@ "hd_id401544551916353\n" "help.text" msgid "ThisDatabaseDocument object" -msgstr "" +msgstr "Oxetu ThisDatabaseDocument" #. CT58E #: thisdbdoc.xhp @@ -42386,7 +42386,7 @@ "par_id251622800540402\n" "help.text" msgid "ThisComponent object" -msgstr "" +msgstr "Oxetu ThisComponent" #. 7k6AR #: thisdbdoc.xhp diff -Nru libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/scalc/00.po libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/scalc/00.po --- libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/scalc/00.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/scalc/00.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-10-13 10:19+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: 1542196264.000000\n" #. E9tti @@ -1400,7 +1400,7 @@ "par_id3149401\n" "help.text" msgid "AutoFilter" -msgstr "Filtru automáticu" +msgstr "Peñera automática" #. MLpCL #: 00000412.xhp diff -Nru libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/scalc/01.po libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/scalc/01.po --- libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/scalc/01.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/scalc/01.po 2022-10-27 10:11:14.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-08-31 14:00+0000\n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -3120,7 +3120,7 @@ "hd_id3155067\n" "help.text" msgid "Add Print Range" -msgstr "Amestar área d'impresión" +msgstr "Amestar estaya d'imprentación" #. 6CE3V #: 03100000.xhp @@ -3129,7 +3129,7 @@ "par_id3155764\n" "help.text" msgid "Adds the selected cells to print ranges." -msgstr "Amiesta les caxelles escoyíes a les árees d'impresión." +msgstr "Amiesta les caxelles esbillaes a les estayes d'imprentación." #. QMSTE #: 04010000.xhp @@ -15963,7 +15963,7 @@ "par_id3150628\n" "help.text" msgid "You can format the separate parts of an array. For example, you can change the font color. Select a cell range and then change the attribute you want." -msgstr "Puédense formatear les distintes partes d'una matriz. Puédese, por exemplu, camudar el color del tipu de lletra. Escueya una área de caxelles y camude l'atributu que deseye." +msgstr "Puédense formatear les distintes partes d'una matriz. Puédese, por exemplu, camudar el color del tipu de lletra. Escueyi una estaya de caxelles y camuda l'atributu que deseyes." #. Tes4E #: 04060107.xhp @@ -42405,7 +42405,7 @@ "hd_id3150716\n" "help.text" msgid "Print range" -msgstr "Área d'impresión" +msgstr "Estaya d'imprentación" #. yAkWW #: 04070100.xhp @@ -44538,7 +44538,7 @@ "tit\n" "help.text" msgid "Print Ranges" -msgstr "Árees d'impresión" +msgstr "Estayes d'imprentación" #. AZP37 #: 05080000.xhp @@ -44547,7 +44547,7 @@ "hd_id3154013\n" "help.text" msgid "Print Ranges" -msgstr "Árees d'impresión" +msgstr "Estayes d'imprentación" #. EQY6G #: 05080000.xhp @@ -44628,7 +44628,7 @@ "par_id3148550\n" "help.text" msgid "Removes the defined print area." -msgstr "Desanicia l'intervalu d'impresión definida." +msgstr "Desanicia la estaya d'imprentación definida." #. KSEPr #: 05080300.xhp @@ -44637,7 +44637,7 @@ "tit\n" "help.text" msgid "Edit Print Ranges" -msgstr "Editar árees d'impresión" +msgstr "Editar les estayes d'imprentación" #. 8w7CW #: 05080300.xhp @@ -44646,7 +44646,7 @@ "hd_id3153088\n" "help.text" msgid "Edit Print Ranges" -msgstr "Editar árees d'impresión" +msgstr "Editar les estayes d'imprentación" #. JfwDe #: 05080300.xhp @@ -44664,7 +44664,7 @@ "hd_id3156281\n" "help.text" msgid "Print range" -msgstr "Área d'impresión" +msgstr "Estaya d'imprentación" #. QqgB7 #: 05080300.xhp @@ -44673,7 +44673,7 @@ "par_id3147228\n" "help.text" msgid "Allows you to modify a defined print range." -msgstr "Permite modificar un intervalu d'impresión definíu." +msgstr "Permite modificar una estaya d'imprentación definida." #. rCXFF #: 05080300.xhp @@ -44772,7 +44772,7 @@ "par_id3156423\n" "help.text" msgid "Adds the current selection to the defined print areas." -msgstr "Amiesta la seleición actual a les árees d'impresión definíes." +msgstr "Amiesta la esbilla actual a les estayes d'imprentación definíes." #. U9JPr #: 05100000.xhp @@ -48246,7 +48246,7 @@ "par_id3156385\n" "help.text" msgid " Click here and then select the custom sort order that you want." -msgstr " Faiga clic equí y escueya l'orde de clasificación personalizáu que deseye." +msgstr "Calca equí y escueyi l'orde de clasificación personalizáu que deseyes." #. AB5C5 #: 12030200.xhp @@ -48426,7 +48426,7 @@ "tit\n" "help.text" msgid "AutoFilter" -msgstr "Filtru automáticu" +msgstr "Peñera automática" #. pGfbC #: 12040100.xhp @@ -52539,7 +52539,7 @@ "par_idN106A0\n" "help.text" msgid "Cell range" -msgstr "Área de caxelles" +msgstr "Estaya de caxelles" #. FbXCC #: 12120100.xhp @@ -53907,7 +53907,7 @@ "hd_id711610558701623\n" "help.text" msgid "Axis" -msgstr "" +msgstr "Exa" #. F9wz2 #: databar_more_options.xhp @@ -53979,7 +53979,7 @@ "hd_id631610560675220\n" "help.text" msgid "Bar Lengths" -msgstr "" +msgstr "Llonxitúes de barres" #. V2bCh #: databar_more_options.xhp @@ -58353,7 +58353,7 @@ "par_id545825775819166\n" "help.text" msgid "Oil barrel" -msgstr "" +msgstr "Barril de petroleu" #. a3nDk #: func_convert.xhp @@ -58623,7 +58623,7 @@ "hd_id731620426688645\n" "help.text" msgid "Decimal prefixes" -msgstr "" +msgstr "Prefixos decimales" #. cjDA7 #: func_convert.xhp @@ -58650,7 +58650,7 @@ "hd_id91620427193950\n" "help.text" msgid "Binary prefixes" -msgstr "" +msgstr "Prefixos binarios" #. X7TD3 #: func_convert.xhp @@ -71403,7 +71403,7 @@ "par_id8523819\n" "help.text" msgid "You can select a fixed width and then click the ruler on the preview to set cell breakup positions." -msgstr "Pue escoyer un anchu fixu y entós faiga clik na regla de la Prevista pa configurar les posiciones de saltos de caxelles." +msgstr "Pues escoyer un anchor fixu y calcar na regla de la prevista pa configurar les posiciones de saltos de caxelles." #. DjifN #: text2columns.xhp diff -Nru libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/scalc/guide.po libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/scalc/guide.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/scalc/guide.po 2022-10-27 10:11:14.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-08-18 16:53+0000\n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -3498,7 +3498,7 @@ "par_idN107DE\n" "help.text" msgid "Additional Settings" -msgstr "Configuración adicional" +msgstr "Axustes adicionales" #. BSAXP #: consolidate.xhp @@ -10374,7 +10374,7 @@ "par_idN108FE\n" "help.text" msgid "To Define a Print Range" -msgstr "Pa definir un intervalu d'impresión" +msgstr "Pa definir una estaya d'imprentación" #. tffSG #: printranges.xhp @@ -10392,7 +10392,7 @@ "par_idN10909\n" "help.text" msgid "Choose Format - Print Ranges - Define." -msgstr "Escueya Formatu - Árees d'impresión - Definir intervalu d'impresión." +msgstr "Escueyi Formatu - Estayes d'imprentación - Definir." #. 5GFUH #: printranges.xhp @@ -10401,7 +10401,7 @@ "par_idN10910\n" "help.text" msgid "To Add Cells to a Print Range" -msgstr "P'amestar caxelles a un intervalu d'impresión" +msgstr "P'amestar caxelles a una estaya d'imprentación" #. fwkxc #: printranges.xhp @@ -10410,7 +10410,7 @@ "par_idN10917\n" "help.text" msgid "Select the cells that you want to add to the existing print range." -msgstr "Escueya les caxelles que deseya amestar al intervalu d'impresión esistente." +msgstr "Escueyi les caxelles que deseyes amestar a la estaya d'imprentación esistente." #. uNLYf #: printranges.xhp @@ -10419,7 +10419,7 @@ "par_idN1091B\n" "help.text" msgid "Choose Format - Print Ranges - Add." -msgstr "Escueya Formatu - Árees d'impresión - Amestar intervalu d'impresión." +msgstr "Escueyi Formatu - Estayes d'imprentación - Amestar." #. Xj8rT #: printranges.xhp @@ -10428,7 +10428,7 @@ "par_idN10922\n" "help.text" msgid "To Clear a Print Range" -msgstr "Pa desaniciar un intervalu d'impresión" +msgstr "Pa desaniciar una estaya d'imprentación" #. dYHcz #: printranges.xhp @@ -10437,7 +10437,7 @@ "par_idN10929\n" "help.text" msgid "Choose Format - Print Ranges - Clear." -msgstr "Escueya Formatu - Árees d'impresión - Amestar intervalu d'impresión." +msgstr "Escueyi Formatu - Estayes d'imprentación - Llimpiar." #. GLmBw #: printranges.xhp diff -Nru libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/schart.po libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/schart.po --- libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/schart.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/schart.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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-06 18:38+0000\n" +"PO-Revision-Date: 2022-10-13 10:18+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -644,7 +644,7 @@ "hd_id0810200911433792\n" "help.text" msgid "Formatting Bar" -msgstr "Barra de formatu" +msgstr "Barra Formatu" #. bGXHw #: main0202.xhp diff -Nru libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/sdatabase.po libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/sdatabase.po --- libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/sdatabase.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/sdatabase.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-08-03 17:45+0000\n" +"PO-Revision-Date: 2022-10-13 10:18+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -2848,7 +2848,7 @@ "hd_id3156003\n" "help.text" msgid "Form Controls" -msgstr "" +msgstr "Controles del formulariu" #. CyFwA #: 04000000.xhp diff -Nru libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/shared/01.po libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/shared/01.po --- libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/shared/01.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/shared/01.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-08-31 13:59+0000\n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -3317,7 +3317,7 @@ "par_id3154863\n" "help.text" msgid "Contains basic information about the current file." -msgstr "" +msgstr "Contién información básico tocante al ficheru actual." #. Trx7x #: 01100200.xhp @@ -5063,7 +5063,7 @@ "hd_id571619252531670\n" "help.text" msgid "Distance" -msgstr "" +msgstr "Distancia" #. KLGHJ #: 01130000.xhp @@ -5153,7 +5153,7 @@ "hd_id281619228113353\n" "help.text" msgid "Page Background" -msgstr "" +msgstr "Fondu de la páxina" #. zHjsd #: 01130000.xhp @@ -7799,7 +7799,7 @@ "bm_id501629842533945\n" "help.text" msgid "Find & Replace dialog" -msgstr "" +msgstr "diálogu Gueta y troquéu" #. FGyuJ #: 02100000.xhp @@ -12002,7 +12002,7 @@ "hd_id3153966\n" "help.text" msgid "Macro" -msgstr "" +msgstr "Macro" #. MZbHo #: 02220000.xhp @@ -12020,7 +12020,7 @@ "par_id3145769\n" "help.text" msgid "Icon Macro" -msgstr "" +msgstr "Iconu Macro" #. cVL5D #: 02220000.xhp @@ -12029,7 +12029,7 @@ "par_id3149239\n" "help.text" msgid "Macro" -msgstr "" +msgstr "Macro" #. mUiNF #: 02220000.xhp @@ -12056,7 +12056,7 @@ "par_id3159104\n" "help.text" msgid "Icon Properties" -msgstr "" +msgstr "Iconu Propiedaes" #. imNDz #: 02220000.xhp @@ -12272,7 +12272,7 @@ "hd_id3147530\n" "help.text" msgid "Name:" -msgstr "" +msgstr "Nome:" #. UHija #: 02220100.xhp @@ -12371,7 +12371,7 @@ "par_id3155599\n" "help.text" msgid "Tracks each change that is made in the current document by author and date." -msgstr "" +msgstr "Rexistra tolos cambeos fechos nel documentu actual, per autor y per data." #. FJDpx #: 02230100.xhp @@ -13694,7 +13694,7 @@ "hd_id3155511\n" "help.text" msgid "AutoFilter" -msgstr "" +msgstr "Peñera automática" #. VbBBf #: 02250000.xhp @@ -17429,7 +17429,7 @@ "hd_id3147435\n" "help.text" msgid "Conditions" -msgstr "" +msgstr "Condiciones" #. UFeFg #: 05020301.xhp @@ -22703,7 +22703,7 @@ "hd_id3156444\n" "help.text" msgid "Distance" -msgstr "" +msgstr "Distancia" #. qZbsk #: 05030500.xhp @@ -24125,7 +24125,7 @@ "par_id3149123\n" "help.text" msgid "Changing measurement units" -msgstr "" +msgstr "Camudar les unidaes de midida" #. BQAVs #: 05040200.xhp @@ -24440,7 +24440,7 @@ "par_id3150032\n" "help.text" msgid "Changing measurement units" -msgstr "" +msgstr "Camudar les unidaes de midida" #. 2EDA5 #: 05040300.xhp @@ -24458,7 +24458,7 @@ "par_id3147326\n" "help.text" msgid "Area" -msgstr "" +msgstr "Área" #. 7xtR7 #: 05040400.xhp @@ -24764,7 +24764,7 @@ "par_id3155411\n" "help.text" msgid "Changing measurement units" -msgstr "" +msgstr "Camudar les unidaes de midida" #. 7Avg4 #: 05040400.xhp @@ -24782,7 +24782,7 @@ "par_id3152791\n" "help.text" msgid "Area" -msgstr "" +msgstr "Área" #. CgGUH #: 05060000.xhp @@ -26555,7 +26555,7 @@ "par_id441608302065414\n" "help.text" msgid "For all style categories:" -msgstr "" +msgstr "Pa toles categoríes d'estilos:" #. ZCV8q #: 05140100.xhp @@ -26636,7 +26636,7 @@ "hd_id3154682\n" "help.text" msgid "Custom Styles for Current Document" -msgstr "" +msgstr "Estilos personalizaos pal documentu actual" #. wWSGE #: 05140100.xhp @@ -26654,7 +26654,7 @@ "par_id401608258192415\n" "help.text" msgid "Styles in Calc" -msgstr "" +msgstr "Estilos en Calc" #. whwZY #: 05140100.xhp @@ -26663,7 +26663,7 @@ "par_id641608263698887\n" "help.text" msgid "Styles in Impress" -msgstr "" +msgstr "Estilos n'Impress" #. CCTFZ #: 05140100.xhp @@ -26672,7 +26672,7 @@ "par_id641369863698831\n" "help.text" msgid "Styles" -msgstr "" +msgstr "Estilos" #. CJiJX #: 05190000.xhp @@ -28715,7 +28715,7 @@ "hd_id3154897\n" "help.text" msgid "Distance" -msgstr "" +msgstr "Distancia" #. 7kpJK #: 05210600.xhp @@ -31451,7 +31451,7 @@ "par_id3146971\n" "help.text" msgid "Distance" -msgstr "" +msgstr "Distancia" #. g6xDf #: 05280000.xhp @@ -34529,7 +34529,7 @@ "hd_id3148943\n" "help.text" msgid "Distance" -msgstr "" +msgstr "Distancia" #. E7sMJ #: 05350300.xhp diff -Nru libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/shared/02.po libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/shared/02.po --- libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/shared/02.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/shared/02.po 2022-10-27 10:11:14.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-08-31 14:00+0000\n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -51,7 +51,7 @@ "par_id3154398\n" "help.text" msgid "Click the Print File Directly icon to print the active document with the current default print settings. These can be found in the Printer Setup dialog, which you can call with the Printer Settings menu command." -msgstr "Faiga clic nel iconu Imprentar pa imprentar el documentu activu colos parámetros d'impresión predeterminaos. Atopar nel diálogu Configuración d'imprentadora, que s'executa col comandu de menú Configuración d'imprentadora." +msgstr "Calca l'iconu Imprentar pa imprentar el documentu activu colos axustes d'imprentación predeterminaos. Atópase nel diálogu Axustes d'imprentadora, que s'executa col comandu de menú Axustes d'imprentadora." #. EqERF #: 01110000.xhp @@ -636,7 +636,7 @@ "tit\n" "help.text" msgid "Form Controls" -msgstr "Campos de control de formulariu" +msgstr "Controles de formulariu" #. bFKGY #: 01170000.xhp @@ -654,7 +654,7 @@ "hd_id3154142\n" "help.text" msgid "Form Controls" -msgstr "Campos de control de formulariu" +msgstr "Controles de formulariu" #. wU73F #: 01170000.xhp @@ -699,7 +699,7 @@ "par_id3149670\n" "help.text" msgid "Form Controls" -msgstr "Campos de control de formulariu" +msgstr "Controles de formulariu" #. qdVuc #: 01170000.xhp @@ -708,7 +708,7 @@ "par_idN10B21\n" "help.text" msgid "XML Form documents (XForms) use the same controls." -msgstr "Los documentos de formulariu XML (XForms) utilicen el mesmu conxuntu de campos de control." +msgstr "Los documentos de formulariu XML (XForms) utilicen el mesmu conxuntu de controles." #. k5YfJ #: 01170000.xhp @@ -2607,7 +2607,7 @@ "hd_id3147102\n" "help.text" msgid "Control Properties" -msgstr "Propiedaes de campos de control" +msgstr "Propiedaes del control" #. BJAGR #: 01170100.xhp @@ -11895,7 +11895,7 @@ "tit\n" "help.text" msgid "Optimize Size" -msgstr "" +msgstr "Optimizar el tamañu" #. AhgAE #: 04210000.xhp @@ -11931,7 +11931,7 @@ "par_id3143270\n" "help.text" msgid "Optimize Size" -msgstr "" +msgstr "Optimizar el tamañu" #. CmFGa #: 04210000.xhp @@ -12030,7 +12030,7 @@ "hd_id3154863\n" "help.text" msgid "Rotate" -msgstr "Rodar" +msgstr "Xirar" #. ycqR8 #: 05090000.xhp @@ -14055,7 +14055,7 @@ "tit\n" "help.text" msgid "AutoFilter" -msgstr "Filtru automáticu" +msgstr "Peñera automática" #. eFhvE #: 12030000.xhp @@ -14064,7 +14064,7 @@ "hd_id3149495\n" "help.text" msgid "AutoFilter" -msgstr "Filtru automáticu" +msgstr "Peñera automática" #. jkAzj #: 12030000.xhp @@ -14091,7 +14091,7 @@ "par_id3147043\n" "help.text" msgid "AutoFilter" -msgstr "Filtru automáticu" +msgstr "Peñera automática" #. 5Fdaj #: 12030000.xhp @@ -16467,7 +16467,7 @@ "hd_id3147389\n" "help.text" msgid "Search/Cancel" -msgstr "" +msgstr "Guetar/Encaboxar" #. duEJs #: 12100200.xhp diff -Nru libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/shared/autopi.po libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/shared/autopi.po --- libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/shared/autopi.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/shared/autopi.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: autopi\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2021-01-14 18:09+0100\n" -"PO-Revision-Date: 2022-06-01 11:37+0000\n" +"PO-Revision-Date: 2022-10-13 10:18+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -7728,7 +7728,7 @@ "tit\n" "help.text" msgid "Additional Settings" -msgstr "Configuración adicional" +msgstr "Axustes adicionales" #. jmEGH #: 01170200.xhp @@ -7737,7 +7737,7 @@ "hd_id3154094\n" "help.text" msgid "Additional Settings" -msgstr "Configuración adicional" +msgstr "Axustes adicionales" #. FYioz #: 01170200.xhp diff -Nru libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/shared/guide.po libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/shared/guide.po --- libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/shared/guide.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/shared/guide.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-08-31 13:59+0000\n" +"PO-Revision-Date: 2022-10-13 10:18+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -7205,7 +7205,7 @@ "par_idN1065F\n" "help.text" msgid "A new text document opens. Use the Form Controls to insert form controls." -msgstr "Ábrese un nuevu documentu de testu. Utilice los Campos de control de formulariu pa inxertar controles de formulariu." +msgstr "Ábrese un nuevu documentu de testu. Utiliza los Controles de formulariu pa inxertar controles de formulariu." #. BABjs #: data_forms.xhp @@ -13847,7 +13847,7 @@ "par_id3154046\n" "help.text" msgid "A link to a web page, for example, \"www.example.com\" or \"www.myprovider.com/mypage/index.html\" is an absolute link." -msgstr "Un enllaz a una páxina web, por exemplu, \"www.example.com\" o \"www.myprovider.com/mypage/index.html\" ye un enllaz absolute." +msgstr "Un enllaz a una páxina web, por exemplu, «www.exemplu.com» o «www.elmiofornidor.com/lamiopaxina/index.html» ye un enllaz absolutu." #. bTRZi #: hyperlink_rel_abs.xhp @@ -13883,7 +13883,7 @@ "par_id3153897\n" "help.text" msgid "When you rest your mouse on a hyperlink, a help tip displays the absolute reference, since $[officename] uses absolute path names internally. The complete path and address can only be seen when you view the result of the HTML export, by loading the HTML file as \"Text\" or opening it with a text editor." -msgstr "Na ayuda emerxente d'un hiperenllaz y nel Editor de testu fonte HTML va ver siempres la referencia absoluta yá que $[officename] utiliza rutes absolutes (nel so sistema internu). La direición y ruta completa del ficheru va vese namái al visualizar la resultancia de la esportación HTML, por exemplu: al cargar el ficheru HTML como \"testu\" o al abrir con un editor de testu." +msgstr "Na ayuda emerxente d'un hiperenllaz vas poder ver la referencia absoluta, yá que $[officename] utiliza caminos absolutos (nel so sistema internu). Les señes y el camín completos del ficheru van vese namái al visualizar el resultáu de la esportación HTML, por exemplu: al cargar el ficheru HTML como «testu» o al abrilu con un editor de testu." #. qxJsq #: imagemap.xhp @@ -14693,7 +14693,7 @@ "par_id3155535\n" "help.text" msgid "To view a repertoire of all characters, choose Insert - Special Character." -msgstr "" +msgstr "Pa ver un repertoriu de tolos caráuteres, escueyi Inxertar - Caráuter especial." #. fFAT9 #: insert_specialchar.xhp @@ -17024,7 +17024,7 @@ "par_id3144436\n" "help.text" msgid "You can incorporate lines into your text with custom angles, width, color, and other attributes." -msgstr "Puen incorporase al testu llinies con ángulos, anchu, color y otros atributos personalizaos." +msgstr "Puen incorporase al testu llinies con ángulos, anchor, color y otros atributos personalizaos." #. DJVXk #: line_intext.xhp @@ -20759,7 +20759,7 @@ "par_id151614326512513\n" "help.text" msgid "No List icon" -msgstr "" +msgstr "Iconu Ensin llista" #. Uzqm6 #: numbering_stop.xhp @@ -23567,7 +23567,7 @@ "par_idN10731\n" "help.text" msgid "%PRODUCTNAME Basic" -msgstr "%PRODUCTNAME Basic" +msgstr "%PRODUCTNAME BASIC" #. D5C9T #: scripting.xhp diff -Nru libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/shared/optionen.po libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/shared/optionen.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/shared/optionen.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-08-31 14:00+0000\n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -1382,7 +1382,7 @@ "par_id4494766\n" "help.text" msgid "AutoText" -msgstr "Autotestu" +msgstr "Testu automáticu" #. SnqLB #: 01010300.xhp @@ -1391,7 +1391,7 @@ "par_id7858516\n" "help.text" msgid "{user profile}/user/autotext{user profile}/user/autotext{user profile}\\user\\autotext" -msgstr "" +msgstr "{perfil d'usuariu}/user/autotext{perfil d'usuariu}/user/autotext{perfil d'usuariu}\\user\\autotext" #. UkYUE #: 01010300.xhp @@ -2363,7 +2363,7 @@ "par_id3148663\n" "help.text" msgid "Only one sub-module can be activated under Hyphenation." -msgstr "Namái pue activase un submódulo en Separtamientu silábicu." +msgstr "Namái pue activase un somódulu en Guionáu." #. svUFH #: 01010401.xhp @@ -2444,7 +2444,7 @@ "hd_id3161832\n" "help.text" msgid "Back" -msgstr "Aviesu" +msgstr "Atrás" #. dEDZC #: 01010401.xhp @@ -2453,7 +2453,7 @@ "par_id3155307\n" "help.text" msgid "Click here to undo the current changes in the list box." -msgstr "Faiga clic equí pa desfacer los cambeos actuales nel cuadru de llista." +msgstr "Calca equí pa desfacer los cambeos actuales nel cuadru de llista." #. M3rSX #: 01010501.xhp @@ -2579,7 +2579,7 @@ "par_id9701528\n" "help.text" msgid "%PRODUCTNAME uses only the RGB color model for printing in color. The CMYK controls are provided only to ease the input of color values using CMYK notation." -msgstr "%PRODUCTNAME usa namái el modelu de color RGB pa la impresión en color. Los controles CMYK apurrir pa facilitar la entrada de valores de color usando la notación CMYK." +msgstr "%PRODUCTNAME usa namái el modelu de color RGB pa la imprentación en color. Los controles CMYK úfrense pa facilitar la entrada de valores de color usando la notación CMYK." #. ycsex #: 01010501.xhp @@ -2678,7 +2678,7 @@ "hd_id3151076\n" "help.text" msgid "Hex #" -msgstr "" +msgstr "Nᵘ hex." #. YhKYN #: 01010501.xhp @@ -2957,7 +2957,7 @@ "par_id3145800\n" "help.text" msgid "Specifies whether the printing of the document counts as a modification. When this option is marked, the very next time the document is closed you are asked if the changes should be saved. The print date is then entered in the document properties as a change." -msgstr "Especifica si la impresión del documentu considérase una cambéu. Si esta opción ta escoyida, la siguiente vegada que zarru'l documentu va solicitáse-y si tienen de guardase los cambeos. La fecha d'impresión introduzse entós como cambéu nes propiedaes del documentu." +msgstr "Especifica si la imprentación del documentu se considera un cambéu. Si esta opción ta escoyida, la siguiente vegada que'l documentu zarre va solicitáse-y si tienen de guardase los cambeos. La fecha d'imprentación introduzse entós como cambéu nes propiedaes del documentu." #. 3rs5u #: 01010600.xhp @@ -4001,7 +4001,7 @@ "hd_id3148946\n" "help.text" msgid "Print Options" -msgstr "Opciones d'impresión" +msgstr "Opciones d'imprentación" #. AeGFc #: 01010900.xhp @@ -4073,7 +4073,7 @@ "par_id3156444\n" "help.text" msgid "Transparency cannot be output directly to a printer. The areas of the document in which transparency is to be visible must therefore always be calculated as bitmaps and sent to the printer. Depending on the size of the bitmaps and the print resolution a large amount of data may result." -msgstr "La tresparencia nun pue unviase direutamente a la imprentadora. Les zones del documentu nes que la tresparencia tien de ser visible tienen de calculase siempres como bitmaps y unviase a la imprentadora. En función del tamañu de los bitmaps y del resolvimientu d'impresión, el tamañu de la resultancia pue ser bien grande." +msgstr "La tresparencia nun pue unviase direutamente a la imprentadora. Les zones del documentu nes que la tresparencia tien de ser visible tienen de calculase siempres como mapes de bits y unviase a la imprentadora. En función del tamañu de los mapes de bits y de la resolución d'imprentación, el tamañu del resultáu pue ser bien grande." #. HLYND #: 01010900.xhp @@ -4136,7 +4136,7 @@ "hd_id3149400\n" "help.text" msgid "High/normal print quality" -msgstr "Calidá d'impresión óptima/Calidá normal d'impresión" +msgstr "Calidá d'imprentación óptima/normal" #. exxtC #: 01010900.xhp @@ -5549,7 +5549,7 @@ "par_id3156276\n" "help.text" msgid "The HTML filter supports CSS2 (Cascading Style Sheets Level 2) for printing documents. These capabilities are only effective if print layout export is activated." -msgstr "El filtru HTML almiti CSS2 (Cascading Style Sheets Level 2) pa la impresión de documentos. Estes capacidaes namái tán disponibles si activó la esportación del diseñu d'impresión." +msgstr "El filtru HTML almite CSS2 (Cascading Style Sheets Level 2) pa la imprentación de documentos. Estes capacidaes namái tán disponibles si activasti la esportación del diseñu d'imprentación." #. i7jxE #: 01030500.xhp @@ -5828,7 +5828,7 @@ "hd_id3149018\n" "help.text" msgid "Drawings and controls" -msgstr "Dibuxos y campos de control" +msgstr "Dibuxos y controles" #. MUz2Z #: 01040200.xhp @@ -5837,7 +5837,7 @@ "par_id3151249\n" "help.text" msgid "Displays the drawings and controls contained in your document." -msgstr "Amuesa los dibuxos y campos de control del documentu." +msgstr "Amuesa los dibuxos y controles del documentu." #. xFt8H #: 01040200.xhp @@ -6062,7 +6062,7 @@ "hd_id3149926\n" "help.text" msgid "Measurement unit" -msgstr "" +msgstr "Unidá de midida" #. hG7QC #: 01040200.xhp @@ -6350,7 +6350,7 @@ "par_id3158408\n" "help.text" msgid "Specifies whether the form control fields of the text document are printed." -msgstr "Indica si tienen d'imprimise los campos de control de formulariu del documentu de testu." +msgstr "Indica si tienen d'imprimise los controles de formulariu del documentu de testu." #. yLUpZ #: 01040400.xhp diff -Nru libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/swriter/00.po libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/swriter/00.po --- libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/swriter/00.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/swriter/00.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-06 18:38+0000\n" +"PO-Revision-Date: 2022-10-13 10:18+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -131,7 +131,7 @@ "tit\n" "help.text" msgid "File Menu" -msgstr "Menú ficheru" +msgstr "Menú Ficheru" #. 5oEzK #: 00000401.xhp @@ -140,7 +140,7 @@ "hd_id3149499\n" "help.text" msgid "File Menu" -msgstr "Menú ficheru" +msgstr "Menú Ficheru" #. q82FL #: 00000401.xhp @@ -284,7 +284,7 @@ "par_id3150536\n" "help.text" msgid "AutoText" -msgstr "AutoTestu" +msgstr "Testu automáticu" #. F7ALF #: 00000402.xhp diff -Nru libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/swriter/01.po libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/swriter/01.po --- libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/swriter/01.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/swriter/01.po 2022-10-27 10:11:14.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-08-31 13:59+0000\n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -2255,7 +2255,7 @@ "tit\n" "help.text" msgid "AutoText" -msgstr "AutoTestu" +msgstr "Testu automáticu" #. qH4A3 #: 02120000.xhp @@ -2291,7 +2291,7 @@ "hd_id3148982\n" "help.text" msgid "AutoText" -msgstr "AutoTestu" +msgstr "Testu automáticu" #. E8EtV #: 02120000.xhp @@ -2426,7 +2426,7 @@ "hd_id3150039\n" "help.text" msgid "AutoText" -msgstr "AutoTestu" +msgstr "Testu automáticu" #. k4QpP #: 02120000.xhp @@ -2552,7 +2552,7 @@ "hd_id3155555\n" "help.text" msgid "Macro" -msgstr "Macro..." +msgstr "Macro" #. PpSwY #: 02120000.xhp @@ -6575,7 +6575,7 @@ "par_id3145784\n" "help.text" msgid "Enter the amount to shift the print area to the right." -msgstr "Especifique un valor pa mover a la derecha l'intervalu d'impresión." +msgstr "Introduz un valor pa mover a la derecha la estaya d'imprentación." #. DYARU #: 04070300.xhp @@ -8177,7 +8177,7 @@ "hd_id3148877\n" "help.text" msgid "Macro" -msgstr "Macro..." +msgstr "Macro" #. 7TTJC #: 04090003.xhp @@ -19454,7 +19454,7 @@ "tit\n" "help.text" msgid "Macro" -msgstr "Macro..." +msgstr "Macro" #. 3WnuD #: 05060700.xhp @@ -19553,7 +19553,7 @@ "par_id3154473\n" "help.text" msgid "AutoText" -msgstr "AutoTestu" +msgstr "Testu automáticu" #. BgXvW #: 05060700.xhp @@ -19562,7 +19562,7 @@ "par_id3149684\n" "help.text" msgid "ImageMap area" -msgstr "Área ImageMap" +msgstr "Área del mapa d'imaxe" #. RbJ5R #: 05060700.xhp @@ -23441,7 +23441,7 @@ "par_id3147407\n" "help.text" msgid "To reverse the last AutoCorrect action, choose Edit - Undo." -msgstr "P'anular la última aición del Formateáu automáticu, escueya Editar - Desfacer." +msgstr "P'anular la última aición de la Correición automática, escueyi Editar - Desfacer." #. c9yUj #: 05150100.xhp @@ -23459,7 +23459,7 @@ "hd_id3155625\n" "help.text" msgid "AutoCorrect for Headings" -msgstr "" +msgstr "Correición automática pa títulos" #. GKSGD #: 05150100.xhp @@ -27185,7 +27185,7 @@ "tit\n" "help.text" msgid "Accessibility Check" -msgstr "" +msgstr "Inspeición d'accesibilidá" #. bFVzE #: accessibility_check.xhp @@ -27203,7 +27203,7 @@ "hd_id771630940172827\n" "help.text" msgid "Accessibility Check" -msgstr "" +msgstr "Inspeición d'accesibilidá" #. yT4uv #: accessibility_check.xhp @@ -27410,7 +27410,7 @@ "hd_id1001603128268578\n" "help.text" msgid "Reference" -msgstr "" +msgstr "Referencia" #. 6LFFX #: edit_reference_submenu.xhp @@ -28040,7 +28040,7 @@ "par_idN10581\n" "help.text" msgid "Adds an address block to the mail merge document." -msgstr "Amiesta un bloque de direiciones al documentu de combinar correspondencia." +msgstr "Amiesta un bloque de señes al documentu de combinar correspondencia." #. rCZnb #: mailmerge03.xhp @@ -30164,7 +30164,7 @@ "tit\n" "help.text" msgid "Select Address Block" -msgstr "Escoyer bloque de direiciones" +msgstr "Esbillar bloque de señes" #. poiHj #: mm_seladdblo.xhp @@ -30173,7 +30173,7 @@ "par_idN10539\n" "help.text" msgid "Select Address Block" -msgstr "Escoyer bloque de direiciones" +msgstr "Esbillar bloque de señes" #. JdNDx #: mm_seladdblo.xhp @@ -30956,7 +30956,7 @@ "par_id2962126\n" "help.text" msgid "Choose the selection mode from the submenu: normal selection mode, or block selection mode." -msgstr "Escoyer el mou de seleición del submenú: mou Normal o el mou d'escueya en Bloque." +msgstr "Escoyer el mou d'esbilla del somenú: mou Normal o el mou d'esbilla en bloque." #. mPBN4 #: selection_mode.xhp diff -Nru libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/swriter/02.po libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/swriter/02.po --- libreoffice-7.3.6/translations/source/ast/helpcontent2/source/text/swriter/02.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/helpcontent2/source/text/swriter/02.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-10-27 08:40+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -509,7 +509,7 @@ "tit\n" "help.text" msgid "No List" -msgstr "" +msgstr "Ensin llista" #. wCBAJ #: 06040000.xhp @@ -518,7 +518,7 @@ "hd_id3145822\n" "help.text" msgid "No List" -msgstr "" +msgstr "Ensin llista" #. MPBzT #: 06040000.xhp @@ -536,7 +536,7 @@ "par_id3151177\n" "help.text" msgid "Icon No List" -msgstr "" +msgstr "Iconu Ensin llista" #. iNFhx #: 06040000.xhp @@ -545,7 +545,7 @@ "par_id3150749\n" "help.text" msgid "No List" -msgstr "" +msgstr "Ensin llista" #. 5FX23 #: 06040000.xhp @@ -1418,7 +1418,7 @@ "par_id3155142\n" "help.text" msgid "Formula icon in Table toolbar" -msgstr "" +msgstr "Iconu Fórmula na barra de ferramientes Tabla" #. DbZyc #: 14020000.xhp @@ -1454,7 +1454,7 @@ "par_id221599495805480\n" "help.text" msgid "Operation" -msgstr "" +msgstr "Operación" #. 7KcQ9 #: 14020000.xhp @@ -3875,7 +3875,7 @@ "tit\n" "help.text" msgid "Add to List" -msgstr "" +msgstr "Amestar a la llista" #. mjGvU #: add_to_list.xhp @@ -3893,7 +3893,7 @@ "hd_id711614068729277\n" "help.text" msgid "Add to List" -msgstr "" +msgstr "Amestar a la llista" #. kM6AJ #: add_to_list.xhp @@ -3911,7 +3911,7 @@ "par_id151614079148636\n" "help.text" msgid "Choose Format - Lists - Add to List." -msgstr "" +msgstr "Escueyi Formatu - Llistes - Amestar a la llista." #. PUsxs #: add_to_list.xhp @@ -3938,7 +3938,7 @@ "par_id651615752040364\n" "help.text" msgid "Add to List Icon" -msgstr "" +msgstr "Iconu Amestar a la llista" #. hxMDa #: add_to_list.xhp @@ -3947,7 +3947,7 @@ "par_id51615752040365\n" "help.text" msgid "Add to List" -msgstr "" +msgstr "Amestar a la llista" #. 6kruw #: add_to_list.xhp diff -Nru libreoffice-7.3.6/translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po libreoffice-7.3.7/translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po --- libreoffice-7.3.6/translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/instsetoo_native/inc_openoffice/windows/msi_languages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-06-15 20:56+0000\n" +"PO-Revision-Date: 2022-10-13 08:53+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -1022,7 +1022,7 @@ "OOO_ACTIONTEXT_116\n" "LngText.text" msgid "ProgID: [1]" -msgstr "IdProg: [1]" +msgstr "Id. prog.: [1]" #. mFnav #: ActionTe.ulf @@ -3029,7 +3029,7 @@ "OOO_CONTROL_305\n" "LngText.text" msgid "To continue, click Next." -msgstr "Pa siguir, pulsia Siguiente." +msgstr "Pa siguir, calca Siguiente." #. E5kBg #: Control.ulf diff -Nru libreoffice-7.3.6/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.3.7/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.3.6/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/officecfg/registry/data/org/openoffice/Office/UI.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://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-08-31 12:21+0000\n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -1147,7 +1147,7 @@ "PopupLabel\n" "value.text" msgid "~Properties..." -msgstr "" +msgstr "~Propiedaes..." #. kvbcj #: CalcCommands.xcu @@ -1628,14 +1628,13 @@ #. p8JoC #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:DefinePrintArea\n" "TooltipLabel\n" "value.text" msgid "Define Print Area" -msgstr "~Definir área d'impresión" +msgstr "Definir estaya d'imprentación" #. ZKFGB #: CalcCommands.xcu @@ -1696,7 +1695,7 @@ "TooltipLabel\n" "value.text" msgid "Edit Print Ranges" -msgstr "Editar los rangos d'impresión" +msgstr "Editar les estayes d'imprentación" #. t8Rwk #: CalcCommands.xcu @@ -1720,14 +1719,13 @@ #. RxtBq #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:AddPrintArea\n" "TooltipLabel\n" "value.text" msgid "Add Print Range" -msgstr "Editar los rangos d'impresión" +msgstr "Amestar estaya d'imprentación" #. qwxGD #: CalcCommands.xcu @@ -2453,7 +2451,7 @@ "TooltipLabel\n" "value.text" msgid "Manage Track Changes" -msgstr "" +msgstr "Xestionar siguimientu de cambeos" #. gzPVU #: CalcCommands.xcu @@ -3862,7 +3860,6 @@ #. GAf7B #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Commands..uno:NumberFormatPercent\n" @@ -4441,14 +4438,13 @@ #. G3E3Q #: CalcCommands.xcu -#, fuzzy msgctxt "" "CalcCommands.xcu\n" "..CalcCommands.UserInterface.Popups..uno:PrintRangesMenu\n" "Label\n" "value.text" msgid "Prin~t Ranges" -msgstr "Im~prentar rangos" +msgstr "Es~tayes d'imprentación" #. EpoiD #: CalcCommands.xcu @@ -10833,7 +10829,7 @@ "Label\n" "value.text" msgid "Delete Table" -msgstr "" +msgstr "Desaniciar la tabla" #. Lbfd9 #: DrawImpressCommands.xcu @@ -10903,7 +10899,7 @@ "ContextLabel\n" "value.text" msgid "~Properties..." -msgstr "" +msgstr "~Propiedaes..." #. pnSEw #: DrawImpressCommands.xcu @@ -17751,7 +17747,7 @@ "Label\n" "value.text" msgid "Vertical Scroll" -msgstr "Desplazamientu vertical" +msgstr "Pergamín vertical" #. kUmYD #: GenericCommands.xcu @@ -17761,7 +17757,7 @@ "Label\n" "value.text" msgid "Horizontal Scroll" -msgstr "Desplazamientu horizontal" +msgstr "Pergamín horizontal" #. ix6Fr #: GenericCommands.xcu @@ -21944,7 +21940,7 @@ "Label\n" "value.text" msgid "Frame Properties" -msgstr "Propiedaes del Marcu" +msgstr "Propiedaes del marcu" #. adBA3 #: GenericCommands.xcu @@ -21954,7 +21950,7 @@ "Label\n" "value.text" msgid "Delete Frame" -msgstr "Desaniciar Frame" +msgstr "Desaniciar el marcu" #. XEp6u #: GenericCommands.xcu @@ -27700,7 +27696,7 @@ "UIName\n" "value.text" msgid "Outline" -msgstr "Fuera de llinia" +msgstr "Esquema" #. tBpp5 #: ImpressWindowState.xcu @@ -27840,7 +27836,7 @@ "UIName\n" "value.text" msgid "Slide View" -msgstr "Vista diapositiva" +msgstr "Vista de diapositives" #. 6xE8P #: ImpressWindowState.xcu @@ -30738,7 +30734,7 @@ "TooltipLabel\n" "value.text" msgid "Manage Track Changes" -msgstr "" +msgstr "Xestionar siguimientu de cambeos" #. WAKZF #: WriterCommands.xcu @@ -32014,7 +32010,7 @@ "Label\n" "value.text" msgid "Borders" -msgstr "Bordes" +msgstr "Berbesos" #. fHAwe #: WriterCommands.xcu @@ -32024,7 +32020,7 @@ "Label\n" "value.text" msgid "Page Columns" -msgstr "Columnes de Páxina" +msgstr "Columnes de la páxina" #. 4Mpyx #: WriterCommands.xcu @@ -32034,7 +32030,7 @@ "Label\n" "value.text" msgid "Page Columns" -msgstr "" +msgstr "Columnes de la páxina" #. Lk4KG #: WriterCommands.xcu @@ -32099,36 +32095,33 @@ #. viVyG #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:FrameDialog\n" "ContextLabel\n" "value.text" msgid "~Properties..." -msgstr "Propiedaes..." +msgstr "~Propiedaes..." #. wwpGc #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n" "Label\n" "value.text" msgid "Image Properties" -msgstr "Propiedaes de la ta~bla..." +msgstr "Propiedaes de la imaxe" #. UC94s #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:GraphicDialog\n" "ContextLabel\n" "value.text" msgid "~Properties..." -msgstr "Propiedaes..." +msgstr "~Propiedaes..." #. qEuQj #: WriterCommands.xcu @@ -32142,14 +32135,13 @@ #. EsGBT #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:TableDialog\n" "ContextLabel\n" "value.text" msgid "~Properties..." -msgstr "Propiedaes..." +msgstr "~Propiedaes..." #. Ux9Rr #: WriterCommands.xcu @@ -32689,14 +32681,13 @@ #. RxF66 #: WriterCommands.xcu -#, fuzzy msgctxt "" "WriterCommands.xcu\n" "..WriterCommands.UserInterface.Commands..uno:DeleteTable\n" "Label\n" "value.text" msgid "Delete Table" -msgstr "Escoyer tabla" +msgstr "Desaniciar la tabla" #. j2gNJ #: WriterCommands.xcu @@ -32716,7 +32707,7 @@ "TooltipLabel\n" "value.text" msgid "Delete table" -msgstr "" +msgstr "Desaniciar la tabla" #. f2Fpk #: WriterCommands.xcu @@ -32746,7 +32737,7 @@ "Label\n" "value.text" msgid "Row Height..." -msgstr "Altor de Filera..." +msgstr "Altor de filera..." #. oQxCX #: WriterCommands.xcu @@ -32766,7 +32757,7 @@ "Label\n" "value.text" msgid "Optimize Size" -msgstr "" +msgstr "Optimizar el tamañu" #. rY2FS #: WriterCommands.xcu @@ -33201,7 +33192,7 @@ "Label\n" "value.text" msgid "No List" -msgstr "" +msgstr "Ensin llista" #. 3kGnA #: WriterCommands.xcu @@ -38450,7 +38441,7 @@ "UIName\n" "value.text" msgid "Optimize Size" -msgstr "" +msgstr "Optimizar el tamañu" #. tqq5K #: WriterWindowState.xcu diff -Nru libreoffice-7.3.6/translations/source/ast/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.3.7/translations/source/ast/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.3.6/translations/source/ast/officecfg/registry/data/org/openoffice/Office.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/officecfg/registry/data/org/openoffice/Office.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-06-01 09:37+0000\n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -10632,7 +10632,7 @@ "Name\n" "value.text" msgid "PrintSize" -msgstr "TamañuImpresión" +msgstr "TamañuImprentación" #. JFtN3 #: TableWizard.xcu @@ -10642,7 +10642,7 @@ "ShortName\n" "value.text" msgid "PrintSize" -msgstr "TamañuImpresión" +msgstr "TamañuImprentación" #. NTgCV #: TableWizard.xcu diff -Nru libreoffice-7.3.6/translations/source/ast/sc/messages.po libreoffice-7.3.7/translations/source/ast/sc/messages.po --- libreoffice-7.3.6/translations/source/ast/sc/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/sc/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-01 11:53+0200\n" -"PO-Revision-Date: 2022-08-31 12:21+0000\n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -639,7 +639,7 @@ #: sc/inc/globstr.hrc:115 msgctxt "STR_UNDO_PRINTRANGES" msgid "Print range" -msgstr "Rangu d'imprentación" +msgstr "Estaya d'imprentación" #. 66Z3F #: sc/inc/globstr.hrc:116 @@ -1172,7 +1172,7 @@ #: sc/inc/globstr.hrc:202 msgctxt "STR_PRINT_INVALID_AREA" msgid "Invalid print range" -msgstr "Estaya d'impresión inválida" +msgstr "Nun val la estaya d'imprentación" #. 2HpWz #: sc/inc/globstr.hrc:203 @@ -17314,7 +17314,7 @@ #: sc/inc/strings.hrc:117 msgctxt "SCSTR_PRINTOPT_PRINTALLPAGES" msgid "All ~Pages" -msgstr "" +msgstr "Toles ~páxines" #. cvNuW #: sc/inc/strings.hrc:118 @@ -19341,7 +19341,7 @@ #: sc/uiconfig/scalc/ui/autoformattable.ui:314 msgctxt "autoformattable|bordercb" msgid "Borders" -msgstr "" +msgstr "Berbesos" #. D2WKC #: sc/uiconfig/scalc/ui/autoformattable.ui:322 @@ -24267,7 +24267,7 @@ #: sc/uiconfig/scalc/ui/insertcells.ui:122 msgctxt "insertcells|extended_tip|right" msgid "Moves the contents of the selected range to the right when cells are inserted." -msgstr "Mueve'l conteníu del área escoyida escontra la derecha al inxertar caxelles." +msgstr "Mueve'l conteníu de la estaya esbillada hacia la derecha al inxertar caxelles." #. V4zVH #: sc/uiconfig/scalc/ui/insertcells.ui:134 @@ -28499,7 +28499,7 @@ #: sc/uiconfig/scalc/ui/printareasdialog.ui:8 msgctxt "printareasdialog|PrintAreasDialog" msgid "Edit Print Ranges" -msgstr "Editar los rangos d'impresión" +msgstr "Editar les estayes d'imprentación" #. 9SYaB #: sc/uiconfig/scalc/ui/printareasdialog.ui:33 @@ -28523,7 +28523,7 @@ #: sc/uiconfig/scalc/ui/printareasdialog.ui:138 msgctxt "printareasdialog|extended_tip|edprintarea" msgid "Allows you to modify a defined print range." -msgstr "Permite modificar un intervalu d'impresión definíu." +msgstr "Permite modificar una estaya d'imprentación definida." #. ED3qW #: sc/uiconfig/scalc/ui/printareasdialog.ui:152 @@ -28553,7 +28553,7 @@ #: sc/uiconfig/scalc/ui/printareasdialog.ui:159 msgctxt "printareasdialog|extended_tip|lbprintarea" msgid "Allows you to modify a defined print range." -msgstr "Permite modificar un intervalu d'impresión definíu." +msgstr "Permite modificar una estaya d'imprentación definida." #. frRTf #: sc/uiconfig/scalc/ui/printareasdialog.ui:174 @@ -28640,7 +28640,7 @@ #: sc/uiconfig/scalc/ui/printareasdialog.ui:392 msgctxt "printareasdialog|extended_tip|PrintAreasDialog" msgid "Opens a dialog where you can specify the print range." -msgstr "Abre un diálogu onde especificar l'intervalu d'impresión." +msgstr "Abre un diálogu onde especificar la estaya d'imprentación." #. 4tC5Y #: sc/uiconfig/scalc/ui/printeroptions.ui:19 @@ -28701,31 +28701,27 @@ #. qQhAG #: sc/uiconfig/scalc/ui/protectsheetdlg.ui:305 -#, fuzzy msgctxt "protectsheetdlg|delete-columns" msgid "Delete columns" -msgstr "Desaniciar columna" +msgstr "Desaniciar columnes" #. fsQEB #: sc/uiconfig/scalc/ui/protectsheetdlg.ui:317 -#, fuzzy msgctxt "protectsheetdlg|delete-rows" msgid "Delete rows" -msgstr "Desaniciar filera" +msgstr "Desaniciar fileres" #. cVdms #: sc/uiconfig/scalc/ui/protectsheetdlg.ui:329 -#, fuzzy msgctxt "protectsheetdlg|insert-columns" msgid "Insert columns" -msgstr "Inxertar columna" +msgstr "Inxertar columnes" #. Arv5t #: sc/uiconfig/scalc/ui/protectsheetdlg.ui:341 -#, fuzzy msgctxt "protectsheetdlg|insert-rows" msgid "Insert rows" -msgstr "Inxertar filera" +msgstr "Inxertar fileres" #. y93cJ #: sc/uiconfig/scalc/ui/protectsheetdlg.ui:353 @@ -30539,13 +30535,13 @@ #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:77 msgctxt "sidebarnumberformat|numberformatcombobox" msgid "Percent" -msgstr "" +msgstr "Porcentaxe" #. bHC79 #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:78 msgctxt "sidebarnumberformat|numberformatcombobox" msgid "Currency" -msgstr "" +msgstr "Moneda" #. Lh2G6 #: sc/uiconfig/scalc/ui/sidebarnumberformat.ui:79 @@ -31322,10 +31318,9 @@ #. aDYdR #: sc/uiconfig/scalc/ui/sortoptionspage.ui:208 -#, fuzzy msgctxt "sortoptionspage|extended_tip|sortuser" msgid "Click here and then select the custom sort order that you want." -msgstr " Faiga clic equí y escueya l'orde de clasificación personalizáu que deseye." +msgstr "Calca equí y escueyi l'orde de clasificación personalizáu que deseyes." #. iWcGs #: sc/uiconfig/scalc/ui/sortoptionspage.ui:227 diff -Nru libreoffice-7.3.6/translations/source/ast/sd/messages.po libreoffice-7.3.7/translations/source/ast/sd/messages.po --- libreoffice-7.3.6/translations/source/ast/sd/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/sd/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-01 11:53+0200\n" -"PO-Revision-Date: 2022-08-18 16:38+0000\n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -200,13 +200,13 @@ #: sd/inc/DocumentRenderer.hrc:85 msgctxt "STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE" msgid "~Selection" -msgstr "" +msgstr "E~sbilla" #. HfsBP #: sd/inc/DocumentRenderer.hrc:90 msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE" msgid "All ~Pages" -msgstr "" +msgstr "Toles ~páxines" #. 7nrMB #: sd/inc/DocumentRenderer.hrc:91 @@ -218,7 +218,7 @@ #: sd/inc/DocumentRenderer.hrc:92 msgctxt "STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE" msgid "~Selection" -msgstr "" +msgstr "E~sbilla" #. wH3TZ msgctxt "stock" @@ -5004,7 +5004,7 @@ #: sd/uiconfig/simpress/ui/customanimationfragment.ui:213 msgctxt "customanimationfragment|underline" msgid "Underlined" -msgstr "" +msgstr "Sorrayáu" #. icBD4 #: sd/uiconfig/simpress/ui/customanimationproperties.ui:8 @@ -5032,10 +5032,9 @@ #. FcztB #: sd/uiconfig/simpress/ui/customanimationspanel.ui:140 -#, fuzzy msgctxt "customanimationspanel|extended_tip|custom_animation_list" msgid "The animation list displays all animations for the current slide." -msgstr "La llista d'animaciones amuesa toles animaciones de la diapositiva actual. " +msgstr "La llista d'animaciones amuesa toles animaciones de la diapositiva actual." #. VBxbo #: sd/uiconfig/simpress/ui/customanimationspanel.ui:171 @@ -5159,7 +5158,7 @@ #: sd/uiconfig/simpress/ui/customanimationspanel.ui:419 msgctxt "customanimationspanel|extended_tip|effect_list" msgid "Select an animation effect." -msgstr "" +msgstr "Esbilla un efeutu d'animación." #. LGuGy #: sd/uiconfig/simpress/ui/customanimationspanel.ui:435 diff -Nru libreoffice-7.3.6/translations/source/ast/sfx2/messages.po libreoffice-7.3.7/translations/source/ast/sfx2/messages.po --- libreoffice-7.3.6/translations/source/ast/sfx2/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/sfx2/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-08-31 12:22+0000\n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -285,7 +285,7 @@ #: include/sfx2/strings.hrc:68 msgctxt "STR_INPUT_NEW" msgid "Enter new category name:" -msgstr "" +msgstr "Introduz el nome nuevu de la categoría:" #. yxN3P #: include/sfx2/strings.hrc:69 @@ -1660,7 +1660,7 @@ #: include/sfx2/strings.hrc:300 msgctxt "STR_TEMPLATE_NAME1" msgid "Grey Elegant" -msgstr "" +msgstr "Buxu elegante" #. FkuLG #: include/sfx2/strings.hrc:301 @@ -3412,7 +3412,7 @@ #: sfx2/uiconfig/ui/documentinfopage.ui:426 msgctxt "documentinfopage|extended_tip|DocumentInfoPage" msgid "Contains basic information about the current file." -msgstr "" +msgstr "Contién información básico tocante al ficheru actual." #. scgsx #: sfx2/uiconfig/ui/documentpropertiesdialog.ui:8 @@ -4244,7 +4244,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:363 msgctxt "optprintpage|reducebitmapnormal" msgid "N_ormal print quality" -msgstr "Calidá _normal d'impresión" +msgstr "Calidá d'imprentación _normal" #. i5T3j #: sfx2/uiconfig/ui/optprintpage.ui:372 @@ -4311,7 +4311,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:438 msgctxt "optprintpage|reducebitmapoptimal" msgid "_High print quality" -msgstr "_Calidá d'impresión óptima" +msgstr "_Calidá d'imprentación óptima" #. BdCpv #: sfx2/uiconfig/ui/optprintpage.ui:447 @@ -4369,10 +4369,9 @@ #. GAFzh #: sfx2/uiconfig/ui/optprintpage.ui:600 -#, fuzzy msgctxt "optprintpage|pdf" msgid "_PDF as standard print job format" -msgstr "_PDF como formatu de xera d'impresión estándar" +msgstr "_PDF como formatu de xera d'imprentación estándar" #. wm7C7 #: sfx2/uiconfig/ui/optprintpage.ui:614 @@ -4408,7 +4407,7 @@ #: sfx2/uiconfig/ui/optprintpage.ui:678 msgctxt "extended_tip|OptPrintPage" msgid "Specifies the print setting options." -msgstr "Especifica les opciones de configuración d'impresión." +msgstr "Especifica les opciones de los axustes d'imprentación." #. NEo7g #: sfx2/uiconfig/ui/panel.ui:73 sfx2/uiconfig/ui/panel.ui:78 @@ -4771,7 +4770,7 @@ #: sfx2/uiconfig/ui/startcenter.ui:205 msgctxt "startcenter|open_recent" msgid "_Recent Documents" -msgstr "" +msgstr "Documentos _recién" #. BnkvG #: sfx2/uiconfig/ui/startcenter.ui:229 @@ -4850,13 +4849,13 @@ #: sfx2/uiconfig/ui/startcenter.ui:518 msgctxt "startcenter|all_recent_label" msgid "Recent Files List" -msgstr "" +msgstr "Llista de ficheros recién" #. kho2B #: sfx2/uiconfig/ui/startcenter.ui:531 msgctxt "startcenter|local_view_label" msgid "Templates List" -msgstr "" +msgstr "Llista de plantíes" #. UHrAZ #: sfx2/uiconfig/ui/stylecontextmenu.ui:12 diff -Nru libreoffice-7.3.6/translations/source/ast/svtools/messages.po libreoffice-7.3.7/translations/source/ast/svtools/messages.po --- libreoffice-7.3.6/translations/source/ast/svtools/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/svtools/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-08-18 16:39+0000\n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -5746,7 +5746,7 @@ #: svtools/uiconfig/ui/restartdialog.ui:100 msgctxt "restartdialog|reason_pdf" msgid "For the modified default print job format to take effect, %PRODUCTNAME must be restarted." -msgstr "Pa que tengan efeutu los cambios nel formatu de trabayu d'impresión predetermináu, tien de reaniciase %PRODUCTNAME." +msgstr "Pa que tengan efeutu los cambios nel formatu de trabayu d'imprentación predetermináu, tien de reaniciase %PRODUCTNAME." #. DuVPb #: svtools/uiconfig/ui/restartdialog.ui:115 diff -Nru libreoffice-7.3.6/translations/source/ast/svx/messages.po libreoffice-7.3.7/translations/source/ast/svx/messages.po --- libreoffice-7.3.6/translations/source/ast/svx/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/svx/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-08-18 16:38+0000\n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -4752,7 +4752,7 @@ #: include/svx/strings.hrc:833 msgctxt "RID_SVXSTR_BMP19" msgid "Night Sky" -msgstr "" +msgstr "Cielu nocherniegu" #. NkYV3 #: include/svx/strings.hrc:834 @@ -4852,76 +4852,75 @@ #. YEbqw #: include/svx/strings.hrc:850 -#, fuzzy msgctxt "RID_SVXSTR_BMP22" msgid "5 Percent" -msgstr "Porcentaxe" +msgstr "5 por cientu" #. AAn36 #: include/svx/strings.hrc:851 msgctxt "RID_SVXSTR_BMP23" msgid "10 Percent" -msgstr "" +msgstr "10 por cientu" #. NLTbt #: include/svx/strings.hrc:852 msgctxt "RID_SVXSTR_BMP24" msgid "20 Percent" -msgstr "" +msgstr "20 por cientu" #. vx2XC #: include/svx/strings.hrc:853 msgctxt "RID_SVXSTR_BMP25" msgid "25 Percent" -msgstr "" +msgstr "25 por cientu" #. weQqs #: include/svx/strings.hrc:854 msgctxt "RID_SVXSTR_BMP26" msgid "30 Percent" -msgstr "" +msgstr "30 por cientu" #. CAdAS #: include/svx/strings.hrc:855 msgctxt "RID_SVXSTR_BMP27" msgid "40 Percent" -msgstr "" +msgstr "40 por cientu" #. 5T5vP #: include/svx/strings.hrc:856 msgctxt "RID_SVXSTR_BMP28" msgid "50 Percent" -msgstr "" +msgstr "50 por cientu" #. aNdJE #: include/svx/strings.hrc:857 msgctxt "RID_SVXSTR_BMP29" msgid "60 Percent" -msgstr "" +msgstr "60 por cientu" #. 3vD8U #: include/svx/strings.hrc:858 msgctxt "RID_SVXSTR_BMP30" msgid "70 Percent" -msgstr "" +msgstr "70 por cientu" #. UJmCD #: include/svx/strings.hrc:859 msgctxt "RID_SVXSTR_BMP31" msgid "75 Percent" -msgstr "" +msgstr "75 por cientu" #. i9RCR #: include/svx/strings.hrc:860 msgctxt "RID_SVXSTR_BMP32" msgid "80 Percent" -msgstr "" +msgstr "80 por cientu" #. 2oEkC #: include/svx/strings.hrc:861 msgctxt "RID_SVXSTR_BMP33" msgid "90 Percent" -msgstr "" +msgstr "90 por cientu" #. a3yZ5 #: include/svx/strings.hrc:862 @@ -14110,10 +14109,9 @@ #. FGgJL #: svx/uiconfig/ui/colsmenu.ui:66 -#, fuzzy msgctxt "colsmenu|more" msgid "_More..." -msgstr "Más..." +msgstr "_Más..." #. JtMyQ #: svx/uiconfig/ui/colsmenu.ui:80 @@ -18478,7 +18476,7 @@ #: svx/uiconfig/ui/passwd.ui:8 msgctxt "passwd|PasswordDialog" msgid "Change Password" -msgstr "Cambiar la contraseña" +msgstr "Camudar la contraseña" #. 5YiVo #: svx/uiconfig/ui/passwd.ui:101 diff -Nru libreoffice-7.3.6/translations/source/ast/sw/messages.po libreoffice-7.3.7/translations/source/ast/sw/messages.po --- libreoffice-7.3.6/translations/source/ast/sw/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/sw/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-01 11:53+0200\n" -"PO-Revision-Date: 2022-08-31 12:21+0000\n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -62,7 +62,7 @@ #: sw/inc/AccessibilityCheckStrings.hrc:23 msgctxt "STR_AVOID_ENDNOTES" msgid "Avoid endnotes." -msgstr "" +msgstr "Evita les notes a lo cabero." #. qhNEG #: sw/inc/AccessibilityCheckStrings.hrc:24 @@ -3373,7 +3373,7 @@ #: sw/inc/strings.hrc:214 msgctxt "STR_POOLNUMRULE_NOLIST" msgid "No List" -msgstr "" +msgstr "Ensin llista" #. mGZHb #: sw/inc/strings.hrc:215 @@ -4555,19 +4555,19 @@ #: sw/inc/strings.hrc:426 msgctxt "STR_INSATTR_UNDO" msgid "Apply attributes" -msgstr "Aplicar atributos" +msgstr "Aplicar los atributos" #. hetuZ #: sw/inc/strings.hrc:427 msgctxt "STR_SETFMTCOLL_UNDO" msgid "Apply Styles: $1" -msgstr "Aplicar estilos: $1" +msgstr "Aplicar los estilos: $1" #. GokWu #: sw/inc/strings.hrc:428 msgctxt "STR_RESET_ATTR_UNDO" msgid "Reset attributes" -msgstr "Reaniciar atributos" +msgstr "Reafitar los atributos" #. mDgEJ #: sw/inc/strings.hrc:429 @@ -5888,7 +5888,7 @@ #: sw/inc/strings.hrc:649 msgctxt "STR_PRINTOPTUI_PRINTSELECTION" msgid "~Selection" -msgstr "" +msgstr "E~sbilla" #. 9EXcV #: sw/inc/strings.hrc:650 @@ -5968,7 +5968,7 @@ #: sw/inc/strings.hrc:664 msgctxt "STR_OUTLINE_TRACKING" msgid "Outline Tracking" -msgstr "" +msgstr "Siguimientu d'esquema" #. qzXwn #: sw/inc/strings.hrc:665 @@ -7062,7 +7062,7 @@ #: sw/inc/strings.hrc:855 msgctxt "ST_DELETE_CONFIRM" msgid "Do you want to delete this registered data source?" -msgstr "¿Quier desaniciar esta fonte de datos rexistrada?" +msgstr "¿Quies desaniciar esta fonte de datos rexistrada?" #. kE5C3 #: sw/inc/strings.hrc:857 @@ -7155,7 +7155,7 @@ #: sw/inc/strings.hrc:871 msgctxt "ST_FILTERNAME" msgid "%PRODUCTNAME Address List (.csv)" -msgstr "Llista de direiciones de %PRODUCTNAME (.csv)" +msgstr "Llista de señes de %PRODUCTNAME (.csv)" #. jiJuZ #: sw/inc/strings.hrc:873 @@ -12777,7 +12777,7 @@ #: sw/uiconfig/swriter/ui/converttexttable.ui:339 msgctxt "converttexttable|label3" msgid "The first " -msgstr "El primer " +msgstr "Les primeres " #. iXL3d #: sw/uiconfig/swriter/ui/converttexttable.ui:352 @@ -12811,17 +12811,15 @@ #. FxaLn #: sw/uiconfig/swriter/ui/createaddresslist.ui:13 -#, fuzzy msgctxt "createaddresslist|CreateAddressList" msgid "New Address List" -msgstr "Llista nueva de direiciones" +msgstr "Llista de señes nueva" #. eTJmA #: sw/uiconfig/swriter/ui/createaddresslist.ui:98 -#, fuzzy msgctxt "createaddresslist|ADDRESS_INFORMATION" msgid "Address Information" -msgstr "Información de la direición" +msgstr "Información de les señes" #. KnL9j #: sw/uiconfig/swriter/ui/createaddresslist.ui:161 @@ -16819,7 +16817,6 @@ #. 9nA3q #: sw/uiconfig/swriter/ui/inputwinmenu.ui:38 -#, fuzzy msgctxt "inputwinmenu|phd" msgid "Percent" msgstr "Porcentaxe" @@ -19271,7 +19268,7 @@ #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:97 msgctxt "mmaddressblockpage|currentaddress" msgid "Current address list: %1" -msgstr "" +msgstr "Llista de señes actual: %1" #. 8JF4w #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:118 @@ -19326,7 +19323,7 @@ #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:263 msgctxt "mmaddressblockpage|extended_tip|address" msgid "Adds an address block to the mail merge document." -msgstr "Amiesta un bloque de direiciones al documentu de combinar correspondencia." +msgstr "Amiesta un bloque de señes al documentu de combinar correspondencia." #. XGCEE #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:291 @@ -20677,7 +20674,7 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:217 msgctxt "navigatorcontextmenu|STR_OUTLINE_TRACKING" msgid "Outline Tracking" -msgstr "" +msgstr "Siguimientu d'esquema" #. fZEEr #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:231 @@ -20695,7 +20692,7 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:247 msgctxt "navigatorcontextmenu|STR_FRAME_TRACKING" msgid "Frame Tracking" -msgstr "" +msgstr "Siguimientu de marcos" #. vhxX5 #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:255 @@ -20743,7 +20740,7 @@ #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:311 msgctxt "navigatorcontextmenu|STR_DRAWING_OBJECT_TRACKING" msgid "Drawing Object Tracking" -msgstr "" +msgstr "Siguimientu d'oxetos de dibuxu" #. w8FTW #: sw/uiconfig/swriter/ui/navigatorcontextmenu.ui:319 @@ -22199,10 +22196,9 @@ #. DVYQN #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:519 -#, fuzzy msgctxt "notebookbar_groups|rowmenuheight" msgid "Row Height..." -msgstr "Altor de filera" +msgstr "Altor de filera..." #. ZLYnH #: sw/uiconfig/swriter/ui/notebookbar_groups.ui:528 @@ -22524,7 +22520,7 @@ #: sw/uiconfig/swriter/ui/numparapage.ui:149 msgctxt "numparapage|comboLB_NUMBER_STYLE" msgid "No List" -msgstr "" +msgstr "Ensin llista" #. hRgAM #: sw/uiconfig/swriter/ui/numparapage.ui:153 @@ -23309,7 +23305,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:357 msgctxt "optformataidspage|cursoropt" msgid "Protected Areas" -msgstr "" +msgstr "Árees protexíes" #. s9cDX #: sw/uiconfig/swriter/ui/optformataidspage.ui:390 @@ -23327,7 +23323,7 @@ #: sw/uiconfig/swriter/ui/optformataidspage.ui:416 msgctxt "optformataidspage|fillmode" msgid "Insert:" -msgstr "" +msgstr "Inxertar:" #. ACvNA #: sw/uiconfig/swriter/ui/optformataidspage.ui:433 @@ -24958,7 +24954,7 @@ #: sw/uiconfig/swriter/ui/paradialog.ui:497 msgctxt "paradialog|labelTP_BORDER" msgid "Borders" -msgstr "Bordes" +msgstr "Berbesos" #. GCvEC #: sw/uiconfig/swriter/ui/paradialog.ui:545 @@ -26653,7 +26649,7 @@ #: sw/uiconfig/swriter/ui/selectblockdialog.ui:8 msgctxt "selectblockdialog|SelectBlockDialog" msgid "Select Address Block" -msgstr "Seleicionar bloque de direiciones" +msgstr "Esbillar bloque de señes" #. PaQhk #: sw/uiconfig/swriter/ui/selectblockdialog.ui:93 @@ -27455,7 +27451,7 @@ #: sw/uiconfig/swriter/ui/statisticsinfopage.ui:257 msgctxt "statisticsinfopage|extended_tip|StatisticsInfoPage" msgid "Displays statistics for the current file." -msgstr "" +msgstr "Amuesa les estadístiques del ficheru actual." #. M4Ub9 #: sw/uiconfig/swriter/ui/stringinput.ui:74 @@ -27642,7 +27638,6 @@ #. BR9dC #: sw/uiconfig/swriter/ui/tableproperties.ui:8 -#, fuzzy msgctxt "tableproperties|TablePropertiesDialog" msgid "Table Properties" msgstr "Propiedaes de la tabla" diff -Nru libreoffice-7.3.6/translations/source/ast/vcl/messages.po libreoffice-7.3.7/translations/source/ast/vcl/messages.po --- libreoffice-7.3.6/translations/source/ast/vcl/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ast/vcl/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-01 11:54+0200\n" -"PO-Revision-Date: 2022-07-15 17:24+0000\n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Asturian \n" "Language: ast\n" @@ -1870,7 +1870,7 @@ #: vcl/uiconfig/ui/cupspassworddialog.ui:148 msgctxt "cupspassworddialog|label1" msgid "_Domain:" -msgstr "" +msgstr "_Dominiu:" #. zQA7A #: vcl/uiconfig/ui/editmenu.ui:12 @@ -1933,7 +1933,7 @@ #: vcl/uiconfig/ui/errornocontentdialog.ui:15 msgctxt "errornocontentdialog|ErrorNoContentDialog" msgid "Please check your document for ranges relevant to printing." -msgstr "Revise'l documentu pa ver les árees rellacionaes cola impresión." +msgstr "Revisa'l documentu pa ver les estayes definíes pa la imprentación." #. VGE4u #: vcl/uiconfig/ui/errornoprinterdialog.ui:7 @@ -2131,7 +2131,7 @@ #: vcl/uiconfig/ui/printdialog.ui:592 msgctxt "printdialog|rbRangeSelection" msgid "_Selection" -msgstr "" +msgstr "E_sbilla" #. CJ2E7 #: vcl/uiconfig/ui/printdialog.ui:602 diff -Nru libreoffice-7.3.6/translations/source/bg/helpcontent2/source/text/scalc.po libreoffice-7.3.7/translations/source/bg/helpcontent2/source/text/scalc.po --- libreoffice-7.3.6/translations/source/bg/helpcontent2/source/text/scalc.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/bg/helpcontent2/source/text/scalc.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-01-27 17:38+0000\n" +"PO-Revision-Date: 2022-10-27 08:40+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-Project-Style: openoffice\n" "X-POOTLE-MTIME: 1562356855.000000\n" @@ -267,7 +267,7 @@ "par_id101636195413295\n" "help.text" msgid "Display the cell comments for the current spreadsheet document." -msgstr "Показва коментарите към клетките в текущата електронна таблица." +msgstr "Показване на коментарите в клетките за текущата електронна таблица." #. 95G2n #: main0103.xhp diff -Nru libreoffice-7.3.6/translations/source/ca/cui/messages.po libreoffice-7.3.7/translations/source/ca/cui/messages.po --- libreoffice-7.3.6/translations/source/ca/cui/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/cui/messages.po 2022-10-27 10:11:14.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-07-01 11:51+0200\n" -"PO-Revision-Date: 2022-08-18 16:38+0000\n" -"Last-Translator: Joan Montané \n" +"PO-Revision-Date: 2022-10-13 08:53+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -3606,7 +3606,7 @@ #: cui/inc/toolbarmode.hrc:31 msgctxt "RID_CUI_TOOLBARMODES" msgid "The Contextual Groups interface focuses on beginners. It exposes the most frequently used functions on groups with the core action as large icon and a couple of small additional features. All functions have a label. Depending on the context, an additional section provides access to those functions." -msgstr "La interfície de grups contextuals s'orienta als principiants. Exposa les funcions més utilitzades en grups amb l'acció principal com a icona gran i un parell de petites característiques addicionals. Totes les funcions tenen una etiqueta. Depenent del context, una secció addicional proporciona accés a aquestes funcions." +msgstr "La interfície de grups contextuals s'orienta als principiants. Exposa les funcions més utilitzades en grups amb l'acció principal com a icona gran i un parell de petites característiques addicionals. Totes les funcions tenen una etiqueta. Depenent del context, una secció addicional proporciona accés a més funcions." #. Xnz8J #: cui/inc/treeopt.hrc:33 @@ -7001,7 +7001,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:1287 msgctxt "colorconfigwin|draw" msgid "Drawing / Presentation" -msgstr "Dibuix / Presentació" +msgstr "Dibuix/presentació" #. yELpi #: cui/uiconfig/ui/colorconfigwin.ui:1339 @@ -7049,7 +7049,7 @@ #: cui/uiconfig/ui/colorconfigwin.ui:1553 msgctxt "colorconfigwin|basic" msgid "Basic Syntax Highlighting" -msgstr "Realçament bàsic de la sintaxi" +msgstr "Realçament de la sintaxi BASIC" #. ERVJA #: cui/uiconfig/ui/colorconfigwin.ui:1605 @@ -8255,7 +8255,7 @@ #: cui/uiconfig/ui/dimensionlinestabpage.ui:479 msgctxt "dimensionlinestabpage|extended_tip|LB_UNIT" msgid "Shows or hides the dimension measurement units. You can also select a measurement unit you want to display from the list." -msgstr "Mostra o amaga les unitats de mesura de dimensió. També podeu seleccionar a la llista la unitat de mesura que voleu visualitzar." +msgstr "Mostra o amaga les unitats de mesura de la cota. També podeu seleccionar a la llista la unitat de mesura que voleu visualitzar." #. gX83d #: cui/uiconfig/ui/dimensionlinestabpage.ui:495 @@ -21046,7 +21046,7 @@ #: cui/uiconfig/ui/textflowpage.ui:181 msgctxt "textflowpage|labelMaxNum" msgid "_Maximum consecutive hyphenated lines" -msgstr "Línies partides consecutives _màximes" +msgstr "Línies partides consecutives mà_ximes" #. GgHhP #: cui/uiconfig/ui/textflowpage.ui:192 diff -Nru libreoffice-7.3.6/translations/source/ca/dbaccess/messages.po libreoffice-7.3.7/translations/source/ca/dbaccess/messages.po --- libreoffice-7.3.6/translations/source/ca/dbaccess/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/dbaccess/messages.po 2022-10-27 10:11:14.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-07-01 11:51+0200\n" -"PO-Revision-Date: 2022-08-18 16:38+0000\n" -"Last-Translator: Joan Montané \n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -782,7 +782,7 @@ #: dbaccess/inc/strings.hrc:140 msgctxt "STR_INFO_OPENING_IN_SQL_VIEW" msgid "$object$ will be opened in SQL view." -msgstr "L'objecte $object$ s'obrirà en vista SQL." +msgstr "L'objecte $object$ s'obrirà en la vista SQL." #. pH2Jv #: dbaccess/inc/strings.hrc:141 diff -Nru libreoffice-7.3.6/translations/source/ca/fpicker/messages.po libreoffice-7.3.7/translations/source/ca/fpicker/messages.po --- libreoffice-7.3.6/translations/source/ca/fpicker/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/fpicker/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-01 11:52+0200\n" -"PO-Revision-Date: 2022-05-18 09:17+0000\n" +"PO-Revision-Date: 2022-10-13 08:53+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1538496751.000000\n" #. SJGCw @@ -488,9 +488,9 @@ "\n" "Do you want to replace it?" msgstr "" -"Ja existeix un disseny amb el nom \"$filename$\".\n" +"Ja existeix un fitxer amb el nom «$filename$».\n" "\n" -"Voleu sobreescriure'l?" +"El voleu reemplaçar?" #. z6Eo3 #: include/fpicker/strings.hrc:32 diff -Nru libreoffice-7.3.6/translations/source/ca/helpcontent2/source/auxiliary.po libreoffice-7.3.7/translations/source/ca/helpcontent2/source/auxiliary.po --- libreoffice-7.3.6/translations/source/ca/helpcontent2/source/auxiliary.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/helpcontent2/source/auxiliary.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-02-17 11:38+0000\n" +"PO-Revision-Date: 2022-10-13 10:17+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1559826240.000000\n" #. fEEXD @@ -311,7 +311,7 @@ "0815\n" "node.text" msgid "Writing Calc Macros" -msgstr "Escriure macros a Calc" +msgstr "Escritura de macros al Calc" #. Q59GN #: scalc.tree diff -Nru libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/sbasic/python.po libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/sbasic/python.po --- libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/sbasic/python.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/sbasic/python.po 2022-10-27 10:11:14.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-07-15 17:33+0000\n" -"Last-Translator: serval2412 \n" +"PO-Revision-Date: 2022-10-13 10:18+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -2226,7 +2226,7 @@ "par_id801636114808666\n" "help.text" msgid "Three library containers are shown in the Macro From list:" -msgstr "" +msgstr "Hi ha tres contenidors de biblioteques dins la llista Macro des de:" #. RnBRr #: python_locations.xhp @@ -2235,7 +2235,7 @@ "par_id321636114854594\n" "help.text" msgid "My Macros: personal macros available for the %PRODUCTNAME user" -msgstr "" +msgstr "Les meves macros: les macros personals a disposició de l'usuari del %PRODUCTNAME" #. BB8K2 #: python_locations.xhp @@ -3644,7 +3644,7 @@ "par_id81632760673283\n" "help.text" msgid "Use APSO extension console as an alternative:" -msgstr "" +msgstr "Feu servir la consola de l'extensió APSO com a alternativa:" #. 6h9CS #: python_shell.xhp @@ -3662,4 +3662,4 @@ "par_id351633599611244\n" "help.text" msgid "PythonShell function in ScriptForge.Exception service" -msgstr "" +msgstr "Funció PythonShell del servei ScriptForge.Exception" diff -Nru libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/sbasic/shared/02.po libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/sbasic/shared/02.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/sbasic/shared/02.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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: 2020-10-22 11:35+0000\n" +"PO-Revision-Date: 2022-10-13 10:18+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-Language: ca\n" "X-POOTLE-MTIME: 1557995155.000000\n" @@ -1293,7 +1293,7 @@ "par_id3154199\n" "help.text" msgid "Adds a combo box. A combo box is a one line list box that a user can click, and then choose an entry from the list. If you want, you can make the entries in the combo box \"read only\"." -msgstr "Afegeix un quadre combinat. Un quadre combinat és un quadre de llista amb una sola línia on l'usuari pot fer clic i triar una entrada de la llista. Si voleu, podeu fer que les entrades del quadre combinat siguin \"només de lectura\"." +msgstr "Afegeix un quadre combinat. Un quadre combinat és un quadre de llista amb una sola línia on l'usuari pot fer clic i triar una entrada de la llista. Si voleu, podeu fer que les entrades del quadre combinat siguin «només de lectura»." #. Q7efB #: 20000000.xhp @@ -1311,7 +1311,7 @@ "par_id3153781\n" "help.text" msgid "Icon Horizontal Scrollbar" -msgstr "" +msgstr "Icona Barra de desplaçament horitzontal" #. Vbp2o #: 20000000.xhp @@ -1338,7 +1338,7 @@ "par_id3150515\n" "help.text" msgid "Icon Vertical Scrollbar" -msgstr "" +msgstr "Icona Barra de desplaçament vertical" #. NmKDo #: 20000000.xhp @@ -1401,7 +1401,7 @@ "par_id3159093\n" "help.text" msgid "Icon Progress Bar" -msgstr "" +msgstr "Icona Barra de progrés" #. AUUic #: 20000000.xhp @@ -1428,7 +1428,7 @@ "par_id3150888\n" "help.text" msgid "Icon Horizontal Line" -msgstr "" +msgstr "Icona Línia horitzontal" #. rVrjy #: 20000000.xhp @@ -1455,7 +1455,7 @@ "par_id3154913\n" "help.text" msgid "Icon Vertical Line" -msgstr "" +msgstr "Icona Línia vertical" #. aQQuM #: 20000000.xhp diff -Nru libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/sbasic/shared/03.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/sbasic/shared/03.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-08-31 14:00+0000\n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -243,13 +243,12 @@ #. ZZKBq #: lib_ScriptForge.xhp -#, fuzzy msgctxt "" "lib_ScriptForge.xhp\n" "par_id851613847558931\n" "help.text" msgid "%PRODUCTNAME Basic" -msgstr "%PRODUCTNAME Basic" +msgstr "%PRODUCTNAME BASIC" #. jv7Z3 #: lib_ScriptForge.xhp @@ -2067,7 +2066,7 @@ "par_id151582649200088\n" "help.text" msgid "Returns a random permutation of a one-dimensional array." -msgstr "" +msgstr "Retorna una permutació aleatòria d'una matriu unidimensional." #. xFwWY #: sf_array.xhp @@ -4650,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 "Visiteu el lloc web de documentació de l'API del %PRODUCTNAME per a obtenir més informació quant als objectes UNO XCellRange, XSheetCellCursor i XSpreadsheet." #. V5dF8 #: sf_calc.xhp @@ -4767,7 +4766,7 @@ "par_id501611617808220\n" "help.text" msgid "Activating a sheet makes sense only if it is performed on a Calc document. To make sure you have a Calc document at hand you can use the isCalc property of the document object, which returns True if it is a Calc document and False otherwise." -msgstr "" +msgstr "L'activació d'un full té sentit només si es fa en un document del Calc. Per a assegurar-se que s'està tractant amb un document del Calc, podeu emprar la propietat isCalc de l'objecte del document, la qual retorna True tractant-se d'un document del Calc, o False si no és el cas." #. KWFFF #: sf_calc.xhp @@ -4866,7 +4865,7 @@ "par_id211592919864118\n" "help.text" msgid "Clears the formats and styles in the given range." -msgstr "" +msgstr "Neteja els formats i estils en l'interval indicat." #. 6Qxnv #: sf_calc.xhp @@ -4884,7 +4883,7 @@ "par_id841592919928169\n" "help.text" msgid "Clears the values and formulas in the given range." -msgstr "" +msgstr "Neteja els valors i les fórmules en l'interval indicat." #. eEGn9 #: sf_calc.xhp @@ -9573,7 +9572,7 @@ "par_id571588333908716\n" "help.text" msgid "No" -msgstr "" +msgstr "No" #. 6L9ke #: sf_dialogcontrol.xhp @@ -17637,7 +17636,7 @@ "hd_id141618777179310\n" "help.text" msgid "Additional examples" -msgstr "" +msgstr "Més exemples" #. JopFS #: sf_formcontrol.xhp @@ -22200,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 "El valor per defecte és el sistema operatiu on s'executa l'script." #. FPuAV #: sf_string.xhp @@ -22317,7 +22316,7 @@ "par_id861612377611438\n" "help.text" msgid "\"*\" represents zero, one, or multiple characters." -msgstr "" +msgstr "«*» representa zero, un o diversos caràcters." #. eLYBF #: sf_string.xhp @@ -23001,7 +23000,7 @@ "bas_id551612386931680\n" "help.text" msgid "' An example with a ScriptForge Dictionary" -msgstr "" +msgstr "' Un exemple amb un diccionari de l'ScriptForge" #. vvADG #: sf_string.xhp @@ -23073,7 +23072,7 @@ "par_id471580211762739\n" "help.text" msgid "Splits a string into an array of elements using a specified delimiter." -msgstr "" +msgstr "Divideix una cadena en una matriu d'elements fent servir un delimitador especificat." #. zsADB #: sf_string.xhp @@ -23370,7 +23369,7 @@ "tit\n" "help.text" msgid "ScriptForge.TextStream service" -msgstr "" +msgstr "Servei ScriptForge.TextStream" #. cEA5U #: sf_textstream.xhp @@ -23379,7 +23378,7 @@ "bm_id351585330787295\n" "help.text" msgid "ScriptForge.TextStream service" -msgstr "" +msgstr "Servei ScriptForge.TextStream" #. nBJsE #: sf_textstream.xhp diff -Nru libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/sbasic/shared.po libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/sbasic/shared.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/sbasic/shared.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-08-31 14:00+0000\n" +"PO-Revision-Date: 2022-10-13 10:18+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -2319,7 +2319,7 @@ "hd_id3154614\n" "help.text" msgid "Variable Types" -msgstr "Tipus de variable" +msgstr "Tipus de variables" #. T5to5 #: 01020100.xhp @@ -38060,7 +38060,6 @@ #. Ug7AF #: Compiler_options.xhp -#, fuzzy msgctxt "" "Compiler_options.xhp\n" "tit\n" @@ -38429,13 +38428,12 @@ #. hzLgR #: ErrVBA.xhp -#, fuzzy msgctxt "" "ErrVBA.xhp\n" "N0079\n" "help.text" msgid "' your code goes here …" -msgstr "El codi va aquí" +msgstr "' el vostre codi va aquí…" #. wEaa3 #: ErrVBA.xhp @@ -38696,13 +38694,12 @@ #. VCDS3 #: Resume.xhp -#, fuzzy msgctxt "" "Resume.xhp\n" "bas_id451586093122848\n" "help.text" msgid "' routine code goes here" -msgstr "' el codi de rutina va aquí" +msgstr "' el codi de la rutina va aquí" #. BFzfG #: Resume.xhp @@ -38888,7 +38885,7 @@ "bas_id521629988250997\n" "help.text" msgid "' Looks up the data array" -msgstr "" +msgstr "' Cerca la matriu de dades" #. dbNrF #: calc_functions.xhp @@ -42923,7 +42920,7 @@ "hd_id401544551916353\n" "help.text" msgid "ThisDatabaseDocument object" -msgstr "" +msgstr "Objecte ThisDatabaseDocument" #. CT58E #: thisdbdoc.xhp @@ -42977,7 +42974,7 @@ "par_id251622800540402\n" "help.text" msgid "ThisComponent object" -msgstr "" +msgstr "Objecte ThisComponent" #. 7k6AR #: thisdbdoc.xhp diff -Nru libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/scalc/01.po libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/scalc/01.po --- libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/scalc/01.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/scalc/01.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-08-31 14:00+0000\n" +"PO-Revision-Date: 2022-10-13 10:19+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -6579,7 +6579,7 @@ "par_id3159204\n" "help.text" msgid "Par (optional) is the par value of the security. If omitted, a default value of 1000 is used." -msgstr "Par (opcional) és el valor par de seguretat. Si s'omet, s'utilitza el valor predeterminat de 1000." +msgstr "Paritat (opcional) és el valor a la par del títol. Si s'omet, s'empra un valor per defecte de 1000." #. EJaKm #: 04060103.xhp @@ -16025,7 +16025,7 @@ "hd_id541633516074226\n" "help.text" msgid "Deleting Array Formulae" -msgstr "" +msgstr "Supressió de fórmules matricials" #. adAax #: 04060107.xhp @@ -53569,13 +53569,12 @@ #. AZNrM #: common_func.xhp -#, fuzzy msgctxt "" "common_func.xhp\n" "tit\n" "help.text" msgid "Common Syntax and example" -msgstr "Common i exemple" +msgstr "Sintaxi comú i exemples" #. GSbiK #: common_func.xhp @@ -54328,7 +54327,7 @@ "hd_id711610558701623\n" "help.text" msgid "Axis" -msgstr "" +msgstr "Eix" #. F9wz2 #: databar_more_options.xhp @@ -54400,7 +54399,7 @@ "hd_id631610560675220\n" "help.text" msgid "Bar Lengths" -msgstr "" +msgstr "Longituds de les barres" #. V2bCh #: databar_more_options.xhp @@ -58309,7 +58308,7 @@ "par_id246972715165395\n" "help.text" msgid "International mile" -msgstr "" +msgstr "Milla internacional" #. 6TCBR #: func_convert.xhp @@ -58318,7 +58317,7 @@ "par_id664674443288268\n" "help.text" msgid "Nautical mile" -msgstr "" +msgstr "Milla nàutica" #. rUVPA #: func_convert.xhp @@ -58417,7 +58416,7 @@ "par_id219736221925573\n" "help.text" msgid "Gram" -msgstr "" +msgstr "Gram" #. Pcwzj #: func_convert.xhp @@ -58426,7 +58425,7 @@ "par_id613363919875679\n" "help.text" msgid "Grain" -msgstr "" +msgstr "Gra" #. HfoFq #: func_convert.xhp @@ -58435,7 +58434,7 @@ "par_id961199633533431\n" "help.text" msgid "Pound" -msgstr "" +msgstr "Lliura" #. TtiGk #: func_convert.xhp @@ -58444,7 +58443,7 @@ "par_id655456352143671\n" "help.text" msgid "Ounce" -msgstr "" +msgstr "Unça" #. pmsEB #: func_convert.xhp @@ -58948,7 +58947,7 @@ "par_id545825775819166\n" "help.text" msgid "Oil barrel" -msgstr "" +msgstr "Barril de petroli" #. a3nDk #: func_convert.xhp @@ -58975,7 +58974,7 @@ "par_id278184952564879\n" "help.text" msgid "Cubic foot" -msgstr "" +msgstr "Peu cúbic" #. Be5Nc #: func_convert.xhp @@ -59002,7 +59001,7 @@ "par_id471177863127144\n" "help.text" msgid "Gross register tonnage" -msgstr "" +msgstr "Tonatge d'arqueig brut" #. tM2GH #: func_convert.xhp @@ -59020,7 +59019,7 @@ "par_id995576717914988\n" "help.text" msgid "Cubic inch" -msgstr "" +msgstr "Polzada cúbica" #. t8skx #: func_convert.xhp @@ -59029,7 +59028,7 @@ "par_id842329689485738\n" "help.text" msgid "Liter" -msgstr "" +msgstr "Litre" #. ZgERp #: func_convert.xhp @@ -59038,7 +59037,7 @@ "par_id236636296681258\n" "help.text" msgid "Cubic light-year" -msgstr "" +msgstr "Any de llum cúbic" #. xbjLF #: func_convert.xhp @@ -59056,7 +59055,7 @@ "par_id463843338576911\n" "help.text" msgid "Cubic international mile" -msgstr "" +msgstr "Milla internacional cúbica" #. apJka #: func_convert.xhp @@ -59137,7 +59136,7 @@ "par_id912821548196546\n" "help.text" msgid "Six pack (2 liters)" -msgstr "" +msgstr "Paquet de sis (2 litres)" #. GNQxR #: func_convert.xhp @@ -59236,7 +59235,7 @@ "par_id448471762246791\n" "help.text" msgid "Multiplier" -msgstr "" +msgstr "Multiplicador" #. zByEE #: func_convert.xhp @@ -59245,7 +59244,7 @@ "hd_id91620427193950\n" "help.text" msgid "Binary prefixes" -msgstr "" +msgstr "Prefixos binaris" #. X7TD3 #: func_convert.xhp @@ -59263,7 +59262,7 @@ "par_id553637738674151\n" "help.text" msgid "Multiplier" -msgstr "" +msgstr "Multiplicador" #. gc56z #: func_convert.xhp @@ -72702,7 +72701,7 @@ "par_id6334116\n" "help.text" msgid "You see the Text to Columns dialog." -msgstr "Veureu el diàleg Text a columnes" +msgstr "Veureu el diàleg Text a columnes." #. BpH4f #: text2columns.xhp @@ -72953,10 +72952,9 @@ #. SqFAe #: xml_source.xhp -#, fuzzy msgctxt "" "xml_source.xhp\n" "par_id240920171007419799\n" "help.text" msgid "Wiki page on XML Source" -msgstr "Pàgina Wiki del sobre la font XML" +msgstr "Pàgina del wiki sobre la funcionalitat Font XML (en anglès)" diff -Nru libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/schart/01.po libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/schart/01.po --- libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/schart/01.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/schart/01.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-15 21:00+0000\n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -5904,7 +5904,7 @@ "par_id1842097\n" "help.text" msgid "You can insert a second y-axis with Insert - Axes after you finish the wizard." -msgstr "Podeu inserir un segon eix Y triant Insereix - Eixos després de finalitzar l'auxiliar." +msgstr "Podeu inserir un segon eix Y triant Insereix ▸ Eixos després de finalitzar l'auxiliar." #. F4KnA #: type_column_line.xhp @@ -5913,7 +5913,7 @@ "hd_id8297677\n" "help.text" msgid "To specify a data range" -msgstr "Per indicar un interval de dades" +msgstr "Per a indicar un interval de dades" #. o6dS4 #: type_column_line.xhp @@ -7272,7 +7272,7 @@ "par_id4181951\n" "help.text" msgid "If you have got more than one price data series, use the Up and Down arrow buttons to order them. The order determines the arrangement in the chart. Do the same for volume data series. You cannot switch price and volume data series." -msgstr "Si teniu més d'una sèrie de dades de preus, utilitzeu els botons de fletxa amunt i avall per ordenar-les. L'ordre en determina la disposició en el diagrama. Feu el mateix per a les sèries de dades de volum. No podeu commutar les sèries de dades de preu i de volum." +msgstr "Si teniu més d'una sèrie de dades de preus, utilitzeu els botons de fletxa amunt i avall per a ordenar-les. L'ordre en determina la disposició en el diagrama. Feu el mateix per a les sèries de dades de volum. No podeu commutar les sèries de dades de preu i de volum." #. TL7Ud #: type_stock.xhp diff -Nru libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/schart.po libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/schart.po --- libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/schart.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/schart.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE 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:55+0000\n" +"PO-Revision-Date: 2022-10-13 10:18+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: 1527509883.000000\n" @@ -645,7 +645,7 @@ "hd_id0810200911433792\n" "help.text" msgid "Formatting Bar" -msgstr "Barra de formatació" +msgstr "Barra Formatació" #. bGXHw #: main0202.xhp diff -Nru libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/sdatabase.po libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/sdatabase.po --- libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/sdatabase.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/sdatabase.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-08-03 17:45+0000\n" +"PO-Revision-Date: 2022-10-13 10:18+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -2533,7 +2533,7 @@ "par_id3153596\n" "help.text" msgid "The Parameter Input dialog asks the user to enter the parameter values. Enter a value for each query parameter and confirm by clicking OK or typing Enter." -msgstr "El diàleg entrada del paràmetre demana a l'usuari que introdueixi els valors del paràmetre. Introduïu un valor per a cada paràmetre de consulta i confirmeu-los clicant OK o escrivint Entrar." +msgstr "El diàleg Entrada de paràmetres demana a l'usuari que introdueixi els valors del paràmetre. Introduïu un valor per a cada paràmetre de consulta i confirmeu-los fent clic a D'acord o prement Retorn." #. eGETM #: 02010100.xhp @@ -5559,7 +5559,7 @@ "hd_id3154011\n" "help.text" msgid "Use Catalog for file-based databases" -msgstr "Utilitzeu Catàleg per a bases de dades basades en fitxers" +msgstr "Usa el Catàleg per a bases de dades basades en fitxers" #. BaWgu #: 11020000.xhp @@ -5667,7 +5667,7 @@ "par_id3161656\n" "help.text" msgid "Opens the Indexes dialog, where you can organize the table indexes in the current dBASE database." -msgstr "Obre el diàleg Indexes, on podeu organitzar els índexs de taula a la base de dades dBASE actual." +msgstr "Obre el diàleg Índexs, on podeu organitzar els índexs de taula a la base de dades dBASE actual." #. vMA8w #: 11030100.xhp @@ -5784,7 +5784,7 @@ "par_id3145315\n" "help.text" msgid "Moves all of the free indexes to the Table Indexes list." -msgstr "Mou tots els índexs lliures a la llista Taula índexs." +msgstr "Mou tots els índexs lliures a la llista Índexs de la taula." #. Ba8Z9 #: 11030100.xhp @@ -5802,7 +5802,7 @@ "par_id3149795\n" "help.text" msgid "Moves the selected table indexes to the Free Indexes list." -msgstr "Mou els índexs seleccionats de la taula a la llista Índexs lliures." +msgstr "Mou els índexs de la taula seleccionats a la llista Índexs lliures." #. sAASQ #: 11030100.xhp diff -Nru libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/shared/00.po libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/shared/00.po --- libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/shared/00.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/shared/00.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://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-06 18:38+0000\n" +"PO-Revision-Date: 2022-10-13 10:18+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -7238,7 +7238,7 @@ "par_id3163722\n" "help.text" msgid "Choose File - Printer Settings." -msgstr "Trieu Fitxer ▸ Configuració de la impressora." +msgstr "Trieu Fitxer ▸ Paràmetres de la impressora." #. Dpv6i #: 00000401.xhp diff -Nru libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/shared/01.po libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/shared/01.po --- libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/shared/01.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/shared/01.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-08-03 17:45+0000\n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -1311,7 +1311,7 @@ "par_id3144438\n" "help.text" msgid "Opens the Printer Setup dialog." -msgstr "Obre el diàleg Configuració de la impressora." +msgstr "Obre el diàleg Paràmetres de la impressora." #. pcasA #: 01010300.xhp @@ -4643,7 +4643,7 @@ "par_id0818200912285064\n" "help.text" msgid "On the General tab page, you find the most important control elements for printing. You can define which contents of your document are to be printed. You can select the printer and open the Printer Settings dialog." -msgstr "A la pestanya General s'hi troben els elements de control més importants de la impressió. Podeu definir quin contingut del document s'ha d'imprimir. Podeu seleccionar la impressora i obrir el diàleg Configuració de la impressora." +msgstr "A la pestanya General s'hi troben els elements de control més importants de la impressió. Podeu definir quin contingut del document s'ha d'imprimir. Podeu seleccionar la impressora i obrir el diàleg Paràmetres de la impressora." #. 5cGHt #: 01130000.xhp @@ -5111,7 +5111,7 @@ "hd_id571619252531670\n" "help.text" msgid "Distance" -msgstr "" +msgstr "Distància" #. KLGHJ #: 01130000.xhp @@ -5201,7 +5201,7 @@ "hd_id281619228113353\n" "help.text" msgid "Page Background" -msgstr "" +msgstr "Fons de la pàgina" #. zHjsd #: 01130000.xhp @@ -5894,7 +5894,7 @@ "par_id3150449\n" "help.text" msgid "You can also use the Printer Settings to specify additional printer options." -msgstr "També podeu utilitzar Configuració de la impressora per a configurar altres opcions d'impressió." +msgstr "També podeu utilitzar Paràmetres de la impressora per a configurar altres opcions d'impressió." #. 7rEyC #: 01140000.xhp @@ -5903,7 +5903,7 @@ "tit\n" "help.text" msgid "Printer Setup" -msgstr "Configuració de la impressora" +msgstr "Paràmetres de la impressora" #. hcFtG #: 01140000.xhp @@ -5921,7 +5921,7 @@ "hd_id3147294\n" "help.text" msgid "Printer Settings" -msgstr "Configuració de la impressora" +msgstr "Paràmetres de la impressora" #. ebHsp #: 01140000.xhp @@ -7881,7 +7881,7 @@ "bm_id501629842533945\n" "help.text" msgid "Find & Replace dialog" -msgstr "" +msgstr "diàleg Cerca i reemplaça" #. FGyuJ #: 02100000.xhp @@ -12225,13 +12225,12 @@ #. xMabR #: 02220000.xhp -#, fuzzy msgctxt "" "02220000.xhp\n" "par_id3159104\n" "help.text" msgid "Icon Properties" -msgstr "Propietats de la icona " +msgstr "Icona Propietats" #. imNDz #: 02220000.xhp @@ -24624,7 +24623,7 @@ "par_id3149123\n" "help.text" msgid "Changing measurement units" -msgstr "" +msgstr "Canvi de les unitats de mesura" #. BQAVs #: 05040200.xhp @@ -24842,7 +24841,7 @@ "par_id3148453\n" "help.text" msgid "Overrides the Spacing setting, and allows the header to expand into the area between the header and the document text." -msgstr "Aquesta opció, que substitueix la configuració d'espaiat, permet que la capçalera cobreixi l'àrea situada entre la capçalera i el text del document." +msgstr "Aquesta opció, que preval sobre el paràmetre Espaiat, permet que la capçalera cobreixi l'àrea situada entre la capçalera i el text del document." #. DFync #: 05040300.xhp @@ -24941,7 +24940,7 @@ "par_id3150032\n" "help.text" msgid "Changing measurement units" -msgstr "" +msgstr "Canvi de les unitats de mesura" #. 2EDA5 #: 05040300.xhp @@ -24954,13 +24953,12 @@ #. mctak #: 05040300.xhp -#, fuzzy msgctxt "" "05040300.xhp\n" "par_id3147326\n" "help.text" msgid "Area" -msgstr "GA Àrea" +msgstr "Àrea" #. 7xtR7 #: 05040400.xhp @@ -25271,7 +25269,7 @@ "par_id3155411\n" "help.text" msgid "Changing measurement units" -msgstr "" +msgstr "Canvi de les unitats de mesura" #. 7Avg4 #: 05040400.xhp @@ -25284,13 +25282,12 @@ #. 4DfxW #: 05040400.xhp -#, fuzzy msgctxt "" "05040400.xhp\n" "par_id3152791\n" "help.text" msgid "Area" -msgstr "GA Àrea" +msgstr "Àrea" #. CgGUH #: 05060000.xhp @@ -27052,7 +27049,7 @@ "par_id841608260799161\n" "help.text" msgid "Press Shift+F11" -msgstr "" +msgstr "Premeu Maj+F11" #. KhFGr #: 05140100.xhp @@ -27079,7 +27076,7 @@ "par_id441608302065414\n" "help.text" msgid "For all style categories:" -msgstr "" +msgstr "Per a totes les categories d'estils:" #. ZCV8q #: 05140100.xhp @@ -27160,7 +27157,7 @@ "hd_id3154682\n" "help.text" msgid "Custom Styles for Current Document" -msgstr "" +msgstr "Estils personalitzats per al document actual" #. wWSGE #: 05140100.xhp @@ -27178,7 +27175,7 @@ "par_id401608258192415\n" "help.text" msgid "Styles in Calc" -msgstr "" +msgstr "Estils al Calc" #. whwZY #: 05140100.xhp @@ -27187,7 +27184,7 @@ "par_id641608263698887\n" "help.text" msgid "Styles in Impress" -msgstr "" +msgstr "Estils a l'Impress" #. CCTFZ #: 05140100.xhp @@ -27196,7 +27193,7 @@ "par_id641369863698831\n" "help.text" msgid "Styles" -msgstr "" +msgstr "Estils" #. CJiJX #: 05190000.xhp diff -Nru libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/shared/02.po libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/shared/02.po --- libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/shared/02.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/shared/02.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-08-03 17:45+0000\n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -51,7 +51,7 @@ "par_id3154398\n" "help.text" msgid "Click the Print File Directly icon to print the active document with the current default print settings. These can be found in the Printer Setup dialog, which you can call with the Printer Settings menu command." -msgstr "Feu clic a la icona Imprimeix el fitxer directament per a imprimir el document actiu amb els paràmetres d'impressió actuals per defecte. Aquests paràmetres es poden trobar al diàleg Configuració de la impressora que podeu cridar amb l'ordre Paràmetres de la impressora." +msgstr "Feu clic a la icona Imprimeix el fitxer directament per a imprimir el document actiu amb els paràmetres d'impressió actuals per defecte. Aquests paràmetres es poden trobar al diàleg Paràmetres de la impressora que podeu cridar amb l'ordre Paràmetres de la impressora." #. EqERF #: 01110000.xhp @@ -8885,7 +8885,7 @@ "par_id3156444\n" "help.text" msgid "The appropriate icons on the Form Navigation Bar can be used in User mode to sort: Sort Ascending, Sort Descending, Sort." -msgstr "Les icones adequades de la barra Navegació de formularis es poden utilitzar en mode d'usuari per ordenar: Ordre ascendent, Ordre descendent, Ordena." +msgstr "Les icones adequades de la barra Navegació de formularis es poden utilitzar en mode d'usuari per a ordenar: Ordre ascendent, Ordre descendent, Ordena." #. TLB5m #: 01170203.xhp @@ -9432,7 +9432,7 @@ "par_id3153748\n" "help.text" msgid "Click the Automatic Sort button to automatically sort the controls according to their position in the document." -msgstr "Feu clic al botó Ordenació automàtica per ordenar automàticament els controls segons la seva posició al document." +msgstr "Feu clic al botó Ordenació automàtica per a ordenar automàticament els controls segons la seva posició al document." #. jtDWj #: 01170400.xhp diff -Nru libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/shared/06.po libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/shared/06.po --- libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/shared/06.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/shared/06.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-31 15:15+0200\n" -"PO-Revision-Date: 2021-08-30 13:40+0000\n" -"Last-Translator: Joan Montané \n" -"Language-Team: Catalan \n" +"PO-Revision-Date: 2022-10-13 10:18+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" +"Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.6.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1543496889.000000\n" #. EUcrc @@ -365,7 +365,7 @@ "par_id231414783735360\n" "help.text" msgid "Slide Design Dialog" -msgstr "Diàleg de disseny de diapositiva" +msgstr "Diàleg Disseny de diapositiva" #. dgGzF #: simpress_screenshots.xhp @@ -374,7 +374,7 @@ "par_id231414780735360\n" "help.text" msgid "Header Footer Dialog" -msgstr "Diàleg de capçalera i peu de pàgina" +msgstr "Diàleg Capçalera i peu de pàgina" #. cxPnD #: simpress_screenshots.xhp @@ -446,7 +446,7 @@ "par_id431634783034366\n" "help.text" msgid "Impress Remote: initial thumbnail shown" -msgstr "Impress remot: es mostra una miniatura inicial" +msgstr "Telecomanda de l'Impress: es mostra una miniatura inicial" #. 9viDm #: svx_screenshots.xhp diff -Nru libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/shared/autopi.po libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/shared/autopi.po --- libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/shared/autopi.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/shared/autopi.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-07-01 10:09+0000\n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -2463,7 +2463,7 @@ "par_idN105DA\n" "help.text" msgid "Enter the agenda topics. Use the Move up and Move down buttons to sort the topics." -msgstr "Introduïu els temes de l'agenda. Utilitzeu els botons Mou amunt i Mou avall per ordenar els temes." +msgstr "Introduïu els temes de l'agenda. Utilitzeu els botons Mou amunt i Mou avall per a ordenar els temes." #. GwCL3 #: 01040500.xhp @@ -2859,7 +2859,7 @@ "par_idN1074E\n" "help.text" msgid "Click to move the selected field up one entry in the list." -msgstr "Feu clic per moure el camp seleccionat un lloc amunt en la llista." +msgstr "Feu clic per a moure el camp seleccionat un lloc amunt en la llista." #. hVfmg #: 01090100.xhp @@ -2877,7 +2877,7 @@ "par_idN10755\n" "help.text" msgid "Click to move the selected field down one entry in the list." -msgstr "Feu clic per moure el camp seleccionat un lloc avall en la llista." +msgstr "Feu clic per a moure el camp seleccionat un lloc avall en la llista." #. VBmtN #: 01090100.xhp @@ -2949,7 +2949,7 @@ "par_idN105B4\n" "help.text" msgid "Select to add a subform." -msgstr "Seleccioneu per afegir un subformulari." +msgstr "Seleccioneu per a afegir un subformulari." #. Y6FNL #: 01090200.xhp @@ -2967,7 +2967,7 @@ "par_idN105C5\n" "help.text" msgid "Click to add a subform based on an existing relation." -msgstr "Feu clic per afegir un subformulari basat en una relació existent." +msgstr "Feu clic per a afegir un subformulari basat en una relació existent." #. h4Dpj #: 01090200.xhp @@ -3003,7 +3003,7 @@ "par_idN105DF\n" "help.text" msgid "Click to add a subform based on a manual selection of fields. " -msgstr "Feu clic per afegir un subformulari basat en una selecció manual dels camps. " +msgstr "Feu clic per a afegir un subformulari basat en una selecció manual dels camps. " #. BPBmp #: 01090200.xhp diff -Nru libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/shared/explorer/database.po libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/shared/explorer/database.po --- libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/shared/explorer/database.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/shared/explorer/database.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-10-05 19:36+0000\n" +"PO-Revision-Date: 2022-10-27 08:40+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-Language: ca\n" "X-POOTLE-MTIME: 1551190404.000000\n" @@ -366,7 +366,7 @@ "par_idN105BF\n" "help.text" msgid "Click to sort in alphabetically or numerically ascending order." -msgstr "Feu-hi clic per ordenar en ordre ascendent alfabètic o numèric." +msgstr "Feu-hi clic per a ordenar en ordre ascendent alfabètic o numèric." #. pR3aG #: querywizard02.xhp @@ -384,7 +384,7 @@ "par_idN105CC\n" "help.text" msgid "Click to sort in alphabetically or numerically descending order." -msgstr "Feu-hi clic per ordenar en ordre descendent alfabètic o numèric." +msgstr "Feu-hi clic per a ordenar en ordre descendent alfabètic o numèric." #. 6U4wS #: querywizard02.xhp diff -Nru libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/shared/guide.po libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/shared/guide.po --- libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/shared/guide.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/shared/guide.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-07-01 10:09+0000\n" +"PO-Revision-Date: 2022-10-13 10:18+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -6693,7 +6693,7 @@ "par_id3145786\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages" -msgstr "%PRODUCTNAME - PreferènciesEines - Opcions - Paràmetres de la llengua - Llengües" +msgstr "%PRODUCTNAME ▸ PreferènciesEines ▸ OpcionsParàmetres de la llengua ▸ Llengües" #. C5ALR #: ctl.xhp @@ -6702,7 +6702,7 @@ "par_id3153770\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - Language Settings - Complex Text Layout" -msgstr "%PRODUCTNAME - PreferènciesEines - Opcions - Paràmetres de la llengua - Disposició complexa de text" +msgstr "%PRODUCTNAME ▸ PreferènciesEines ▸ OpcionsParàmetres de la llengua ▸ Disposició complexa de text" #. E7xSj #: data_addressbook.xhp @@ -13980,7 +13980,7 @@ "par_id3154046\n" "help.text" msgid "A link to a web page, for example, \"www.example.com\" or \"www.myprovider.com/mypage/index.html\" is an absolute link." -msgstr "Un enllaç a una pàgina web, com ara \"www.exemple.com\" o \"www.elmeuproveïdor.com/lamevapàgina/index.html\", és un enllaç absolut." +msgstr "Un enllaç a una pàgina web, com ara «www.exemple.com» o «www.elmeuproveïdor.com/lamevapàgina/index.html», és un enllaç absolut." #. bTRZi #: hyperlink_rel_abs.xhp @@ -14016,7 +14016,7 @@ "par_id3153897\n" "help.text" msgid "When you rest your mouse on a hyperlink, a help tip displays the absolute reference, since $[officename] uses absolute path names internally. The complete path and address can only be seen when you view the result of the HTML export, by loading the HTML file as \"Text\" or opening it with a text editor." -msgstr "Quan poseu el ratolí a sobre d'un enllaç, un indicador d'ajuda mostra la referència absoluta, ja que el $[officename] utilitza noms de camins absoluts internament. L'adreça i el camí complets només són visibles quan visualitzeu el resultat de l'exportació HTML, carregant el fitxer HTML com un \"Text\" o obrint-lo amb un editor de text." +msgstr "Quan poseu el ratolí a sobre d'un enllaç, un indicador d'ajuda mostra la referència absoluta, ja que el $[officename] utilitza noms de camins absoluts internament. L'adreça i el camí complets només són visibles quan visualitzeu el resultat de l'exportació HTML, carregant el fitxer HTML com un «Text» o obrint-lo amb un editor de text." #. qxJsq #: imagemap.xhp @@ -17125,7 +17125,7 @@ "par_id3150043\n" "help.text" msgid "%PRODUCTNAME - PreferencesTools - Options - Language Settings - Languages" -msgstr "%PRODUCTNAME - PreferènciesEines - Opcions - Paràmetres de la llengua - Llengües" +msgstr "%PRODUCTNAME ▸ PreferènciesEines ▸ OpcionsParàmetres de la llengua ▸ Llengües" #. 4frEL #: language_select.xhp @@ -17296,7 +17296,7 @@ "par_id3153748\n" "help.text" msgid "You can draw a line above, beside or below a paragraph in a Writer text document by choosing Format - Paragraph - Borders." -msgstr "Podeu dibuixar una línia a sobre, a sota o al costat d'un paràgraf en un document de text del Writer si trieu Format - Paràgraf - Vores." +msgstr "Podeu dibuixar una línia a sobre, a sota o al costat d'un paràgraf en un document de text del Writer si trieu Format ▸ Paràgraf ▸ Vores." #. ED6cS #: line_intext.xhp @@ -20903,7 +20903,7 @@ "par_id3154288\n" "help.text" msgid "No List icon" -msgstr "" +msgstr "Icona Cap llista" #. nFCu3 #: numbering_stop.xhp @@ -20912,7 +20912,7 @@ "par_id151614326512513\n" "help.text" msgid "No List icon" -msgstr "" +msgstr "Icona Cap llista" #. Uzqm6 #: numbering_stop.xhp @@ -21399,7 +21399,7 @@ "par_id3159233\n" "help.text" msgid "Make sure that your printer has been setup under File - Printer Settings." -msgstr "Assegureu-vos que s'ha configurat la impressora a Fitxer ▸ Configuració de la impressora." +msgstr "Assegureu-vos que s'ha configurat la impressora a Fitxer ▸ Paràmetres de la impressora." #. MyG4n #: pageformat_max.xhp @@ -22913,13 +22913,12 @@ #. 2w5mE #: redaction.xhp -#, fuzzy msgctxt "" "redaction.xhp\n" "par_id961562796947231\n" "help.text" msgid "Direct Export to PDF icon" -msgstr "GADirect Exporta a la icona PDF" +msgstr "Icona Exporta directament a PDF" #. wqjEG #: redaction.xhp @@ -23765,7 +23764,7 @@ "par_idN10731\n" "help.text" msgid "%PRODUCTNAME Basic" -msgstr "%PRODUCTNAME Basic" +msgstr "%PRODUCTNAME BASIC" #. D5C9T #: scripting.xhp diff -Nru libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/shared/optionen.po libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/shared/optionen.po --- libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/shared/optionen.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/shared/optionen.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-08-31 14:00+0000\n" +"PO-Revision-Date: 2022-10-13 10:18+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -1414,7 +1414,7 @@ "par_id973540\n" "help.text" msgid "This folder stores your own AutoText texts." -msgstr "Aquesta carpeta emmagatzema els textos de text automàtic." +msgstr "Aquesta carpeta emmagatzema els vostres textos de text automàtic." #. vGjc8 #: 01010300.xhp diff -Nru libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/swriter/01.po libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/swriter/01.po --- libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/swriter/01.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/swriter/01.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-08-03 17:45+0000\n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -12375,7 +12375,7 @@ "par_id3149812\n" "help.text" msgid "Sets the options for sorting the index entries." -msgstr "Configura les opcions per ordenar les entrades d'índex." +msgstr "Configura les opcions per a ordenar les entrades d'índex." #. NCw7S #: 04120212.xhp @@ -12393,7 +12393,7 @@ "par_id3154475\n" "help.text" msgid "Select the language rules to use for sorting the index entries." -msgstr "Seleccioneu les regles de la llengua que s'han d'utilitzar per ordenar les entrades d'índex." +msgstr "Seleccioneu les regles de la llengua que s'han d'utilitzar per a ordenar les entrades d'índex." #. xANL4 #: 04120212.xhp @@ -16769,7 +16769,6 @@ #. 4CSvr #: 05040500.xhp -#, fuzzy msgctxt "" "05040500.xhp\n" "hd_id3155775\n" @@ -23625,7 +23624,7 @@ "par_id3147407\n" "help.text" msgid "To reverse the last AutoCorrect action, choose Edit - Undo." -msgstr "Per invertir l'última acció de correcció automàtica, trieu Edita ▸ Desfés." +msgstr "Per a revertir l'última acció de correcció automàtica, trieu Edita ▸ Desfés." #. c9yUj #: 05150100.xhp @@ -23643,7 +23642,7 @@ "hd_id3155625\n" "help.text" msgid "AutoCorrect for Headings" -msgstr "" +msgstr "Correcció automàtica per a encapçalaments" #. GKSGD #: 05150100.xhp @@ -23688,7 +23687,7 @@ "hd_id3152941\n" "help.text" msgid "AutoCorrect for Separator Lines" -msgstr "" +msgstr "Correcció automàtica per a línies separadores" #. rxk4h #: 05150100.xhp @@ -27452,7 +27451,7 @@ "hd_id271630943848307\n" "help.text" msgid "The Accessibility Check dialog" -msgstr "" +msgstr "El diàleg Inspecció d'accessibilitat" #. FAFuD #: accessibility_check.xhp @@ -27680,7 +27679,7 @@ "par_idN10558\n" "help.text" msgid "Opens a submenu to edit the properties of the selected textbox or shape." -msgstr "" +msgstr "Obre un submenú per a editar les propietats del quadre de text o la forma que hàgiu seleccionat." #. UWnvc #: format_object.xhp diff -Nru libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/swriter/02.po libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/swriter/02.po --- libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/swriter/02.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/swriter/02.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-07-15 17:32+0000\n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -510,7 +510,7 @@ "tit\n" "help.text" msgid "No List" -msgstr "" +msgstr "Cap llista" #. wCBAJ #: 06040000.xhp @@ -519,7 +519,7 @@ "hd_id3145822\n" "help.text" msgid "No List" -msgstr "" +msgstr "Cap llista" #. MPBzT #: 06040000.xhp @@ -537,7 +537,7 @@ "par_id3151177\n" "help.text" msgid "Icon No List" -msgstr "" +msgstr "Icona Cap llista" #. iNFhx #: 06040000.xhp @@ -546,7 +546,7 @@ "par_id3150749\n" "help.text" msgid "No List" -msgstr "" +msgstr "Cap llista" #. 5FX23 #: 06040000.xhp @@ -1417,13 +1417,12 @@ #. cgzyx #: 14020000.xhp -#, fuzzy msgctxt "" "14020000.xhp\n" "par_id3155142\n" "help.text" msgid "Formula icon in Table toolbar" -msgstr "Icona de fórmula a la barra d'eines Taula" +msgstr "Icona Fórmula a la barra d'eines Taula" #. DbZyc #: 14020000.xhp @@ -1454,7 +1453,6 @@ #. E8BRA #: 14020000.xhp -#, fuzzy msgctxt "" "14020000.xhp\n" "par_id221599495805480\n" @@ -3902,7 +3900,7 @@ "tit\n" "help.text" msgid "Add to List" -msgstr "" +msgstr "Afegeix a la llista" #. mjGvU #: add_to_list.xhp @@ -3920,7 +3918,7 @@ "hd_id711614068729277\n" "help.text" msgid "Add to List" -msgstr "" +msgstr "Afegeix a la llista" #. kM6AJ #: add_to_list.xhp @@ -3938,7 +3936,7 @@ "par_id151614079148636\n" "help.text" msgid "Choose Format - Lists - Add to List." -msgstr "" +msgstr "Trieu Format ▸ Llistes ▸ Afegeix a la llista." #. PUsxs #: add_to_list.xhp @@ -3965,7 +3963,7 @@ "par_id651615752040364\n" "help.text" msgid "Add to List Icon" -msgstr "" +msgstr "Icona Afegeix a la llista" #. hxMDa #: add_to_list.xhp @@ -3974,7 +3972,7 @@ "par_id51615752040365\n" "help.text" msgid "Add to List" -msgstr "" +msgstr "Afegeix a la llista" #. 6kruw #: add_to_list.xhp @@ -4100,7 +4098,7 @@ "par_id811616018796902\n" "help.text" msgid "Use this procedure to combine two lists." -msgstr "" +msgstr "Feu servir aquest procediment per a combinar dues llistes." #. JsrhA #: word_count_stb.xhp diff -Nru libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/swriter.po libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/swriter.po --- libreoffice-7.3.6/translations/source/ca/helpcontent2/source/text/swriter.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/helpcontent2/source/text/swriter.po 2022-10-27 10:11:14.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-02-21 07:40+0000\n" -"Last-Translator: AssumptaAn \n" +"PO-Revision-Date: 2022-10-13 10:18+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.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-Language: ca\n" "X-POOTLE-MTIME: 1557994516.000000\n" @@ -681,7 +681,7 @@ "hd_id3145784\n" "help.text" msgid "Bullets and Numbering" -msgstr "Numeració i pics" +msgstr "Pics i numeració" #. E6Eut #: main0105.xhp diff -Nru libreoffice-7.3.6/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po libreoffice-7.3.7/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po --- libreoffice-7.3.6/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/officecfg/registry/data/org/openoffice/Office/UI.po 2022-10-27 10:11:14.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-08-18 16:38+0000\n" -"Last-Translator: Joan Montané \n" +"PO-Revision-Date: 2022-10-13 08:53+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -17584,7 +17584,7 @@ "Label\n" "value.text" msgid "Vertical Scroll" -msgstr "Desplaçament vertical" +msgstr "Pergamí vertical" #. kUmYD #: GenericCommands.xcu @@ -17594,7 +17594,7 @@ "Label\n" "value.text" msgid "Horizontal Scroll" -msgstr "Desplaçament horitzontal" +msgstr "Pergamí horitzontal" #. ix6Fr #: GenericCommands.xcu @@ -23566,7 +23566,7 @@ "Label\n" "value.text" msgid "Export Directly as PDF" -msgstr "Exporta directament com a PDF" +msgstr "Exporta directament a PDF" #. 8eSWp #: GenericCommands.xcu @@ -27426,7 +27426,7 @@ "UIName\n" "value.text" msgid "Outline" -msgstr "Contorn" +msgstr "Esquema" #. tBpp5 #: ImpressWindowState.xcu @@ -32856,7 +32856,7 @@ "Label\n" "value.text" msgid "No List" -msgstr "Sense llista" +msgstr "Cap llista" #. 3kGnA #: WriterCommands.xcu @@ -34506,7 +34506,7 @@ "TooltipLabel\n" "value.text" msgid "Clone Formatting (double click and Ctrl or Cmd to alter behavior)" -msgstr "Clona el format (doble clic i Ctrl o Ordre per a a canviar el comportament)" +msgstr "Clona la formatació (doble clic i Ctrl o Ordre per a a canviar el comportament)" #. 7PCFf #: WriterCommands.xcu diff -Nru libreoffice-7.3.6/translations/source/ca/officecfg/registry/data/org/openoffice/Office.po libreoffice-7.3.7/translations/source/ca/officecfg/registry/data/org/openoffice/Office.po --- libreoffice-7.3.6/translations/source/ca/officecfg/registry/data/org/openoffice/Office.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/officecfg/registry/data/org/openoffice/Office.po 2022-10-27 10:11:14.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-02-05 18:59+0100\n" -"PO-Revision-Date: 2022-08-18 16:38+0000\n" -"Last-Translator: Joan Montané \n" +"PO-Revision-Date: 2022-10-13 08:53+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -10094,7 +10094,7 @@ "Name\n" "value.text" msgid "CommonName" -msgstr "NomComú" +msgstr "NomVernacle" #. 23DVu #: TableWizard.xcu @@ -10104,7 +10104,7 @@ "ShortName\n" "value.text" msgid "CommonName" -msgstr "NomComú" +msgstr "NomVernacle" #. QEn6m #: TableWizard.xcu diff -Nru libreoffice-7.3.6/translations/source/ca/sc/messages.po libreoffice-7.3.7/translations/source/ca/sc/messages.po --- libreoffice-7.3.6/translations/source/ca/sc/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/sc/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-01 11:53+0200\n" -"PO-Revision-Date: 2022-08-18 16:38+0000\n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -28230,7 +28230,7 @@ #: sc/uiconfig/scalc/ui/protectsheetdlg.ui:353 msgctxt "protectsheetdlg|unprotected" msgid "Select unprotected cells" -msgstr "Seleccionar les cel·les desprotegides" +msgstr "Selecciona les cel·les desprotegides" #. MTnMc #: sc/uiconfig/scalc/ui/protectsheetdlg.ui:394 diff -Nru libreoffice-7.3.6/translations/source/ca/sd/messages.po libreoffice-7.3.7/translations/source/ca/sd/messages.po --- libreoffice-7.3.6/translations/source/ca/sd/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/sd/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-01 11:53+0200\n" -"PO-Revision-Date: 2022-08-18 16:38+0000\n" +"PO-Revision-Date: 2022-10-13 08:53+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -1444,7 +1444,7 @@ "Do you want to replace it?" msgstr "" "Ja existeix un disseny amb aquest nom.\n" -"Voleu sobreescriure'l?" +"El voleu reemplaçar?" #. bnA2v #: sd/inc/strings.hrc:201 @@ -1576,7 +1576,7 @@ #: sd/inc/strings.hrc:222 msgctxt "STR_PRES_SOFTEND" msgid "Click to exit presentation..." -msgstr "Feu clic aquí per a acabar la presentació..." +msgstr "Feu clic per a sortir de la presentació..." #. EzUVJ #: sd/inc/strings.hrc:223 @@ -1604,7 +1604,7 @@ "is not a valid audio file !" msgstr "" "El fitxer %\n" -"no és un fitxer d'àudio vàlid!" +"no és un fitxer d'àudio vàlid." #. SRWpo #: sd/inc/strings.hrc:227 diff -Nru libreoffice-7.3.6/translations/source/ca/sfx2/messages.po libreoffice-7.3.7/translations/source/ca/sfx2/messages.po --- libreoffice-7.3.6/translations/source/ca/sfx2/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/sfx2/messages.po 2022-10-27 10:11:14.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-03-31 23:45+0200\n" -"PO-Revision-Date: 2022-08-18 16:39+0000\n" -"Last-Translator: Joan Montané \n" +"PO-Revision-Date: 2022-10-13 08:54+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -463,7 +463,7 @@ #: include/sfx2/strings.hrc:94 msgctxt "STR_INFO_NOSEARCHRESULTS" msgid "No topics found." -msgstr "No s'han trobat temes." +msgstr "No s'ha trobat cap tema." #. 9D6Ze #: include/sfx2/strings.hrc:95 @@ -4808,7 +4808,7 @@ #: sfx2/uiconfig/ui/startcenter.ui:518 msgctxt "startcenter|all_recent_label" msgid "Recent Files List" -msgstr "Límit de fitxers recents" +msgstr "Llista de fitxers recents" #. kho2B #: sfx2/uiconfig/ui/startcenter.ui:531 diff -Nru libreoffice-7.3.6/translations/source/ca/starmath/messages.po libreoffice-7.3.7/translations/source/ca/starmath/messages.po --- libreoffice-7.3.6/translations/source/ca/starmath/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/starmath/messages.po 2022-10-27 10:11:14.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:12+0200\n" -"PO-Revision-Date: 2022-08-18 16:38+0000\n" -"Last-Translator: Joan Montané \n" +"PO-Revision-Date: 2022-10-13 08:53+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -2828,13 +2828,13 @@ #: starmath/uiconfig/smath/ui/fontdialog.ui:16 msgctxt "fontdialog|FontDialog" msgid "Fonts" -msgstr "Tipus de lletres" +msgstr "Lletres tipogràfiques" #. x7cHX #: starmath/uiconfig/smath/ui/fontdialog.ui:155 msgctxt "fontdialog|extended_tip|font" msgid "Select a font from the list." -msgstr "Seleccioneu un tipus de lletra de la llista." +msgstr "Seleccioneu una lletra tipogràfica de la llista." #. eepux #: starmath/uiconfig/smath/ui/fontdialog.ui:170 diff -Nru libreoffice-7.3.6/translations/source/ca/svtools/messages.po libreoffice-7.3.7/translations/source/ca/svtools/messages.po --- libreoffice-7.3.6/translations/source/ca/svtools/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/svtools/messages.po 2022-10-27 10:11:14.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-08-18 16:39+0000\n" -"Last-Translator: Joan Montané \n" +"PO-Revision-Date: 2022-10-13 08:54+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -5602,7 +5602,7 @@ #: svtools/uiconfig/ui/printersetupdialog.ui:8 msgctxt "printersetupdialog|PrinterSetupDialog" msgid "Printer Setup" -msgstr "Configuració de la impressora" +msgstr "Paràmetres de la impressora" #. ZNAnC #: svtools/uiconfig/ui/printersetupdialog.ui:40 diff -Nru libreoffice-7.3.6/translations/source/ca/svx/messages.po libreoffice-7.3.7/translations/source/ca/svx/messages.po --- libreoffice-7.3.6/translations/source/ca/svx/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/svx/messages.po 2022-10-27 10:11:14.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-08-18 16:38+0000\n" -"Last-Translator: Joan Montané \n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" "MIME-Version: 1.0\n" @@ -4756,7 +4756,7 @@ #: include/svx/strings.hrc:836 msgctxt "RID_SVXSTR_BMP79" msgid "Invoice Paper" -msgstr "Paper de factura" +msgstr "Paper d'estrassa" #. x5eiA #: include/svx/strings.hrc:837 @@ -8165,7 +8165,7 @@ #: include/svx/strings.hrc:1473 msgctxt "RID_SUBSETMAP" msgid "Hangul Jamo" -msgstr "Hangul Jamo" +msgstr "Jamo del hangul" #. gMEFL #: include/svx/strings.hrc:1474 diff -Nru libreoffice-7.3.6/translations/source/ca/sw/messages.po libreoffice-7.3.7/translations/source/ca/sw/messages.po --- libreoffice-7.3.6/translations/source/ca/sw/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/ca/sw/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-01 11:53+0200\n" -"PO-Revision-Date: 2022-08-18 16:38+0000\n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Catalan \n" "Language: ca\n" @@ -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 "Per suprimir un marcador, seleccioneu-lo i feu clic al botó Suprimeix. No hi haurà diàleg de confirmació." +msgstr "Per a suprimir un marcador, seleccioneu-lo i feu clic al botó Suprimeix. No hi haurà diàleg de confirmació." #. hvWfd #: sw/uiconfig/swriter/ui/insertbookmark.ui:362 @@ -18162,7 +18162,7 @@ #: sw/uiconfig/swriter/ui/labeloptionspage.ui:248 msgctxt "labeloptionspage|extended_tip|setup" msgid "Opens the Printer Setup dialog." -msgstr "Obre el diàleg Configuració de la impressora." +msgstr "Obre el diàleg Paràmetres de la impressora." #. ePWUe #: sw/uiconfig/swriter/ui/labeloptionspage.ui:262 @@ -19026,7 +19026,7 @@ #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:164 msgctxt "mmaddressblockpage|assign" msgid "Match _Fields..." -msgstr "_Fes coincidir els camps" +msgstr "_Fes coincidir els camps…" #. seTsD #: sw/uiconfig/swriter/ui/mmaddressblockpage.ui:172 @@ -20574,7 +20574,7 @@ #: sw/uiconfig/swriter/ui/navigatorpanel.ui:474 msgctxt "navigatorpanel|anchor|tooltip_text" msgid "Anchor<->Text" -msgstr "Àncora<->Text" +msgstr "Àncora ↔ text" #. vwcpF #: sw/uiconfig/swriter/ui/navigatorpanel.ui:478 @@ -29177,7 +29177,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 "Reemplaça les entrades d'índex idèntiques amb una entrada única que llista els números de pàgina allà on apareix l'entrada en el document. Per exemple, les entrades \"Visualitza 10, Visualitza 43\" es combinen com a \"Visualitza 10, 43\"." +msgstr "Reemplaça les entrades d'índex idèntiques amb una sola entrada que mostra els números de pàgina on apareix l'entrada en el document. Per exemple, les entrades «Vegeu 10, Vegeu 43» es combinen com a «Vegeu 10, 43»." #. AVAFm #: sw/uiconfig/swriter/ui/tocindexpage.ui:954 @@ -29201,7 +29201,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:983 msgctxt "tocindexpage|extended_tip|usedash" msgid "Replaces identical index entries that occur on consecutive pages with a single entry and the page range where the entry occurs. For example, the entries \"View 10, View 11, View 12\" are combined as \"View 10-12\"." -msgstr "Reemplaça les entrades d'índex idèntiques que apareixen en pàgines consecutives amb una sola entrada i l'interval de la pàgina on es troba l'entrada. Per exemple, les entrades \"Visualitza 10, Visualitza 11, Visualitza 12\" es combinen com a \"Visualitza 10-12\"." +msgstr "Reemplaça les entrades d'índex idèntiques que apareixen en pàgines consecutives amb una sola entrada i l'interval de la pàgina on es troba l'entrada. Per exemple, les entrades «Vegeu 10, Vegeu 11, Vegeu 12» es combinen com a «Vegeu 10-12»." #. GfaT4 #: sw/uiconfig/swriter/ui/tocindexpage.ui:994 @@ -29279,7 +29279,7 @@ #: sw/uiconfig/swriter/ui/tocindexpage.ui:1157 msgctxt "tocindexpage|extended_tip|lang" msgid "Select the language rules to use for sorting the index entries." -msgstr "Seleccioneu les regles de la llengua que s'han d'utilitzar per ordenar les entrades d'índex." +msgstr "Seleccioneu les regles de la llengua que s'han d'utilitzar per a ordenar les entrades d'índex." #. MKA2M #: sw/uiconfig/swriter/ui/tocindexpage.ui:1182 diff -Nru libreoffice-7.3.6/translations/source/da/helpcontent2/source/text/sdatabase.po libreoffice-7.3.7/translations/source/da/helpcontent2/source/text/sdatabase.po --- libreoffice-7.3.6/translations/source/da/helpcontent2/source/text/sdatabase.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/da/helpcontent2/source/text/sdatabase.po 2022-10-27 10:11:14.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-01-30 06:39+0000\n" -"Last-Translator: SteenRønnow \n" +"PO-Revision-Date: 2022-10-13 10:18+0000\n" +"Last-Translator: Jørgen Madsen \n" "Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" #. ugSgG #: 02000000.xhp @@ -427,7 +427,7 @@ "par_id8307138\n" "help.text" msgid "The Query Design window layout is stored with a created query, but cannot be stored with a created view." -msgstr "Vinduet Forespørgselsdesigns layout lagres sammen med en oprette forespørgsel, men kan ikke lagres med en oprettet visning," +msgstr "Vinduet Forespørgselsdesignslayout lagres sammen med en oprettet forespørgsel, men kan ikke lagres med en oprettet visning," #. TEBj6 #: 02010100.xhp diff -Nru libreoffice-7.3.6/translations/source/de/basctl/messages.po libreoffice-7.3.7/translations/source/de/basctl/messages.po --- libreoffice-7.3.6/translations/source/de/basctl/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/basctl/messages.po 2022-10-27 10:11:14.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:37+0100\n" -"PO-Revision-Date: 2022-02-05 19:39+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" +"Last-Translator: Annabelle Wübbelsmann \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: 1555473992.000000\n" #. fniWp @@ -656,7 +656,7 @@ #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:167 msgctxt "basicmacrodialog|existingmacrosft" msgid "Existing Macros In:" -msgstr "Vorhandene Makros in:" +msgstr "Vorhandene Makros in" #. 8Bfcg #: basctl/uiconfig/basicide/ui/basicmacrodialog.ui:230 @@ -968,7 +968,7 @@ #: basctl/uiconfig/basicide/ui/exportdialog.ui:8 msgctxt "exportdialog|ExportDialog" msgid "Export Basic library" -msgstr "Basic-Bibliothek exportieren" +msgstr "BASIC-Bibliothek exportieren" #. hvm9y #: basctl/uiconfig/basicide/ui/exportdialog.ui:90 @@ -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 "Geben Sie einen Namen für die neue Bibliothek oder das neue Modul ein." +msgstr "Geben Sie einen Namen für das neue Modul, den neuen Dialog oder die neue Bibliothek ein." #. uVgXz #: basctl/uiconfig/basicide/ui/organizedialog.ui:8 diff -Nru libreoffice-7.3.6/translations/source/de/basic/messages.po libreoffice-7.3.7/translations/source/de/basic/messages.po --- libreoffice-7.3.6/translations/source/de/basic/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/basic/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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-27 03:31+0000\n" -"Last-Translator: Ettore Atalan \n" -"Language-Team: German \n" +"PO-Revision-Date: 2022-10-13 08:53+0000\n" +"Last-Translator: Christian Kühl \n" +"Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: Weblate 4.8.1\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1507236530.000000\n" #. CacXi @@ -230,7 +230,7 @@ #: basic/inc/basic.hrc:61 msgctxt "RID_BASIC_START" msgid "Renaming on different drives impossible." -msgstr "Umbenennen auf unterschiedlichen Laufwerken nicht möglich." +msgstr "Umbenennen auf verschiedenen Laufwerken nicht möglich." #. 8gEYf #: basic/inc/basic.hrc:62 diff -Nru libreoffice-7.3.6/translations/source/de/chart2/messages.po libreoffice-7.3.7/translations/source/de/chart2/messages.po --- libreoffice-7.3.6/translations/source/de/chart2/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/chart2/messages.po 2022-10-27 10:11:14.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-07-01 11:51+0200\n" -"PO-Revision-Date: 2022-08-18 16:38+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" +"Last-Translator: Annabelle Wübbelsmann \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -559,7 +559,7 @@ #: chart2/inc/strings.hrc:99 msgctxt "STR_OBJECT_SHAPE" msgid "Drawing Object" -msgstr "Zeichenobjekt" +msgstr "Zeichnungsobjekt" #. dNCXG #: chart2/inc/strings.hrc:100 @@ -1403,7 +1403,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:322 msgctxt "dlg_DataLabel|FT_LABEL_PLACEMENT" msgid "Place_ment" -msgstr "Platz_ierung" +msgstr "Platz_ierung:" #. RBvRC #: chart2/uiconfig/ui/dlg_DataLabel.ui:338 @@ -1493,7 +1493,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:367 msgctxt "dlg_DataLabel|FT_TEXT_SEPARATOR" msgid "_Separator" -msgstr "_Trenner" +msgstr "_Trennzeichen:" #. m8qsr #: chart2/uiconfig/ui/dlg_DataLabel.ui:383 @@ -1559,7 +1559,7 @@ #: chart2/uiconfig/ui/dlg_DataLabel.ui:518 msgctxt "dlg_DataLabel|FT_LABEL_TEXTDIR" msgid "Te_xt direction" -msgstr "Te_xtrichtung" +msgstr "Te_xtrichtung:" #. tjcHp #: chart2/uiconfig/ui/dlg_DataLabel.ui:535 @@ -2627,7 +2627,7 @@ #: chart2/uiconfig/ui/sidebartype.ui:85 msgctxt "sidebartype|3dlook" msgid "_3D Look" -msgstr "_3D-Darstellung" +msgstr "_3D-Darstellung:" #. mjrkY #: chart2/uiconfig/ui/sidebartype.ui:104 @@ -2675,7 +2675,7 @@ #: chart2/uiconfig/ui/sidebartype.ui:264 msgctxt "sidebartype|linetypeft" msgid "_Line type" -msgstr "Linien_typ" +msgstr "Linien_typ:" #. Hqc3N #: chart2/uiconfig/ui/sidebartype.ui:279 @@ -3179,7 +3179,7 @@ #: chart2/uiconfig/ui/tp_AxisPositions.ui:44 msgctxt "tp_AxisPositions|FT_CROSSES_OTHER_AXIS_AT" msgid "_Cross other axis at" -msgstr "Andere Achse schneiden _bei" +msgstr "Andere Achse schneiden _bei:" #. Z734o #: chart2/uiconfig/ui/tp_AxisPositions.ui:60 @@ -3269,7 +3269,7 @@ #: chart2/uiconfig/ui/tp_AxisPositions.ui:258 msgctxt "tp_AxisPositions|FT_PLACE_LABELS" msgid "_Place labels" -msgstr "_Position" +msgstr "_Position:" #. GDk2L #: chart2/uiconfig/ui/tp_AxisPositions.ui:274 @@ -3443,7 +3443,7 @@ #: chart2/uiconfig/ui/tp_ChartType.ui:48 msgctxt "tp_ChartType|FT_CAPTION_FOR_WIZARD" msgid "Choose a Chart Type" -msgstr "Diagrammtyp wählen" +msgstr "Wählen Sie einen Diagrammtyp" #. wBFXQ #: chart2/uiconfig/ui/tp_ChartType.ui:96 @@ -3455,7 +3455,7 @@ #: chart2/uiconfig/ui/tp_ChartType.ui:125 msgctxt "tp_ChartType|3dlook" msgid "_3D Look" -msgstr "_3D-Darstellung" +msgstr "_3D-Darstellung:" #. EB95g #: chart2/uiconfig/ui/tp_ChartType.ui:135 @@ -3719,7 +3719,7 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:254 msgctxt "tp_DataLabel|FT_LABEL_PLACEMENT" msgid "Place_ment" -msgstr "Platz_ierung" +msgstr "Platz_ierung:" #. L2MYb #: chart2/uiconfig/ui/tp_DataLabel.ui:270 @@ -3809,7 +3809,7 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:299 msgctxt "tp_DataLabel|FT_TEXT_SEPARATOR" msgid "_Separator" -msgstr "_Trenner" +msgstr "_Trenner:" #. oPhGH #: chart2/uiconfig/ui/tp_DataLabel.ui:315 @@ -3875,7 +3875,7 @@ #: chart2/uiconfig/ui/tp_DataLabel.ui:450 msgctxt "tp_DataLabel|FT_LABEL_TEXTDIR" msgid "Te_xt direction" -msgstr "Te_xtrichtung" +msgstr "Te_xtrichtung:" #. MYXZo #: chart2/uiconfig/ui/tp_DataLabel.ui:467 @@ -4349,7 +4349,7 @@ #: chart2/uiconfig/ui/tp_LegendPosition.ui:142 msgctxt "tp_LegendPosition|FT_LEGEND_TEXTDIR" msgid "Te_xt direction" -msgstr "Te_xtrichtung" +msgstr "Te_xtrichtung:" #. PSPoQ #: chart2/uiconfig/ui/tp_LegendPosition.ui:158 @@ -4571,7 +4571,7 @@ #: chart2/uiconfig/ui/tp_Scale.ui:102 msgctxt "tp_Scale|TXT_AXIS_TYPE" msgid "T_ype" -msgstr "A_rt" +msgstr "A_rt:" #. D6Bre #: chart2/uiconfig/ui/tp_Scale.ui:118 @@ -4601,13 +4601,13 @@ #: chart2/uiconfig/ui/tp_Scale.ui:159 msgctxt "tp_Scale|TXT_MIN" msgid "_Minimum" -msgstr "_Minimum" +msgstr "_Minimum:" #. XUKzj #: chart2/uiconfig/ui/tp_Scale.ui:173 msgctxt "tp_Scale|TXT_MAX" msgid "Ma_ximum" -msgstr "Ma_ximum" +msgstr "Ma_ximum:" #. 4jRuB #: chart2/uiconfig/ui/tp_Scale.ui:185 @@ -4673,7 +4673,7 @@ #: chart2/uiconfig/ui/tp_Scale.ui:328 msgctxt "tp_Scale|TXT_STEP_MAIN" msgid "Ma_jor interval" -msgstr "Hau_ptintervall" +msgstr "Hau_ptintervall:" #. AtZ6D #: chart2/uiconfig/ui/tp_Scale.ui:358 @@ -4727,7 +4727,7 @@ #: chart2/uiconfig/ui/tp_Scale.ui:473 msgctxt "tp_Scale|TXT_STEP_HELP_COUNT" msgid "Minor inter_val count" -msgstr "Hil_fsintervall Schritte" +msgstr "Hil_fsintervall Schritte:" #. c9m8j #: chart2/uiconfig/ui/tp_Scale.ui:500 @@ -4811,13 +4811,13 @@ #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:123 msgctxt "tp_SeriesToAxis|FT_GAP" msgid "_Spacing" -msgstr "Ab_stand" +msgstr "Ab_stand:" #. 27wWb #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:136 msgctxt "tp_SeriesToAxis|FT_OVERLAP" msgid "_Overlap" -msgstr "Ü_berlappung" +msgstr "Ü_berlappung:" #. NKaBT #: chart2/uiconfig/ui/tp_SeriesToAxis.ui:153 @@ -5501,7 +5501,7 @@ #: chart2/uiconfig/ui/wizelementspage.ui:391 msgctxt "wizelementspage|Axe" msgid "Choose Titles, Legend, and Grid Settings" -msgstr "Wählen Sie Titel-, Legenden- und Gitter-Einstellungen" +msgstr "Wählen Sie die Titel-, Legenden- und Gitter-Einstellungen" #. wp2DC #: chart2/uiconfig/ui/wizelementspage.ui:421 diff -Nru libreoffice-7.3.6/translations/source/de/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po libreoffice-7.3.7/translations/source/de/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po --- libreoffice-7.3.6/translations/source/de/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/connectivity/registry/mysqlc/org/openoffice/Office/DataAccess.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-05 16:22+0000\n" -"Last-Translator: Thomas Hackert \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2022-10-13 08:53+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" +"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: 1538756577.000000\n" #. NHVFU @@ -24,4 +24,4 @@ "DriverTypeDisplayName\n" "value.text" msgid "MySQL Connector" -msgstr "MySQL Connector" +msgstr "MySQL-Verbinder" diff -Nru libreoffice-7.3.6/translations/source/de/cui/messages.po libreoffice-7.3.7/translations/source/de/cui/messages.po --- libreoffice-7.3.6/translations/source/de/cui/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/cui/messages.po 2022-10-27 10:11:14.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-07-01 11:51+0200\n" -"PO-Revision-Date: 2022-08-18 16:38+0000\n" -"Last-Translator: Annabelle Wübbelsmann \n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" +"Last-Translator: Christian Lohmaier \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -315,7 +315,7 @@ #: cui/inc/strings.hrc:52 msgctxt "RID_SVXSTR_SUBMENU_NAME" msgid "Submenu name" -msgstr "Name des Untermenüs" +msgstr "Name des Untermenüs:" #. qJgZw #: cui/inc/strings.hrc:53 @@ -661,13 +661,13 @@ #: cui/inc/strings.hrc:118 msgctxt "RID_SVXSTR_EVENT_STARTAPP" msgid "Start Application" -msgstr "Programmstart" +msgstr "Anwendung starten" #. 6tUvx #: cui/inc/strings.hrc:119 msgctxt "RID_SVXSTR_EVENT_CLOSEAPP" msgid "Close Application" -msgstr "Programmende" +msgstr "Anwendung schließen" #. 6NsQz #: cui/inc/strings.hrc:120 @@ -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 "%PRODUCTNAME bietet eine Vielzahl von Optionen für die Benutzeroberfläche, damit Sie sich wie zu Hause fühlen" +msgstr "%PRODUCTNAME bietet eine Vielzahl von Optionen für die Benutzeroberfläche, damit Sie sich wie zu Hause fühlen." #. m8rYd #: cui/inc/tipoftheday.hrc:51 @@ -2178,7 +2178,9 @@ #: 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 "Um in Calc eine Zelle über mehrere Tabellen zu summieren, beziehen Sie sich auf den Bereich der Tabellen, beispielsweise =SUMME('Tabelle 1'.A1:'Tabelle 3'.A1)." +msgstr "" +"Um in Calc eine Zelle über mehrere Tabellen zu summieren, beziehen Sie sich auf den Bereich der Tabellen,\n" +"beispielsweise =SUMME('Tabelle 1'.A1:'Tabelle 3'.A1)." #. AxXYW #: cui/inc/tipoftheday.hrc:58 @@ -2256,7 +2258,7 @@ #: 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 "Um Zellinhalte in Calc farbig anzuzeigen, wählen Sie »Ansicht ▸ Werte hervorheben«: Text in schwarz, Formeln in grün, Zahlen in blau und geschützte Zellen mit grauem Hintergrund." +msgstr "Um in Calc Zellinhalte farbig anzuzeigen, wählen Sie »Ansicht ▸ Werte hervorheben«: Text in Schwarz, Formeln in Grün, Zahlen in Blau und geschützte Zellen mit grauem Hintergrund." #. kKdqp #. local help missing @@ -2281,7 +2283,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 "Um die Größe von Objekten so anzupassen, dass Sie zu Ihrem gewählten Papierformat passen, wählen Sie in Draw/Impress »Folie ▸ Eigenschaften… ▸ Objekt an Papierformat anpassen«." +msgstr "Um in Draw/Impress die Größe von Objekten so anzupassen, dass Sie zu Ihrem gewählten Papierformat passen, wählen Sie »Folie ▸ Folieneigenschaften… ▸ Objekt an Papierformat anpassen«." #. hj7H4 #: cui/inc/tipoftheday.hrc:75 @@ -2306,7 +2308,7 @@ #: cui/inc/tipoftheday.hrc:78 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To automatically number table rows in Writer, select the relevant column, then apply a List Style." -msgstr "Um Tabellenzeilen in Writer automatisch zu nummerieren, wählen Sie die entsprechende Spalte aus und wenden dann ein Listenvorlage an." +msgstr "Um in Writer Tabellenzeilen automatisch zu nummerieren, wählen Sie die entsprechende Spalte aus und wenden dann eine Listenvorlage an." #. AzNEm #. no local help URI @@ -2319,7 +2321,7 @@ #: cui/inc/tipoftheday.hrc:80 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to sort a series in %PRODUCTNAME Calc such as A1, A2, A3, A11, A15, not in alphabetical order but on the number? Enable natural sort in the Options tab." -msgstr "Um Reihen wie A1, A2, A3, A11, A15 in %PRODUCTNAME Calc nicht in alphabetischer, sondern in numerischer Folge zu sortieren, aktivieren Sie das Markierfeld \"Natürliche Sortierung verwenden\" unter »Daten ▸ Sortieren… ▸ Register: Optionen«." +msgstr "Um in %PRODUCTNAME Calc Reihen wie A1, A2, A3, A11, A15 nicht in alphabetischer, sondern in numerischer Folge zu sortieren, aktivieren Sie das Markierfeld \"Natürliche Sortierung verwenden\" unter »Daten ▸ Sortieren… ▸ Register: Optionen«." #. Wx8QG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/12030200.html @@ -2350,19 +2352,19 @@ #: cui/inc/tipoftheday.hrc:85 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use the Backspace key instead of Delete in Calc. You can choose what to delete." -msgstr "Um in Calc auszuwählen, was gelöscht werden soll, verwenden Sie die Taste »Rückschritt« anstelle von »Entf«." +msgstr "Um in Calc auszuwählen, was gelöscht werden soll, verwenden Sie [Rückschritt] anstelle von [Entf]." #. UuWHK #: 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 "Um schlecht aussehende MS Word-Tabellenzellen zu beheben, wählen Sie »Tabelle ▸ Größe ▸ Optimale Zeilenhöhe/Spaltenbreite«." +msgstr "Um schlecht aussehende MS Word-Tabellenzellen zu korrigieren, wählen Sie »Tabelle ▸ Größe ▸ Optimale Zeilenhöhe/Spaltenbreite«." #. HEfCq #: cui/inc/tipoftheday.hrc:87 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To repeat a table heading when a table spans over a page, use Table ▸ Table Properties ▸ Text Flow ▸ Repeat heading." -msgstr "Um eine Tabellenüberschrift in Writer zu wiederholen, wenn sich eine Tabelle über mehr als eine Seite erstreckt, wählen Sie »Tabelle ▸ Tabelleneigenschaften… ▸ Register: Textfluss ▸ Markierfeld: Überschrift wiederholen«." +msgstr "Um in Writer eine Tabellenüberschrift zu wiederholen, wenn sich eine Tabelle über mehr als eine Seite erstreckt, wählen Sie »Tabelle ▸ Tabelleneigenschaften… ▸ Register: Textfluss ▸ Markierfeld: Überschrift wiederholen«." #. wBMUD #: cui/inc/tipoftheday.hrc:88 @@ -2386,13 +2388,13 @@ #: cui/inc/tipoftheday.hrc:91 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to insert the date in a spreadsheet cell? Type %MOD1+; or Shift+%MOD1+; to insert the time." -msgstr "Um die aktuelle Zeit in eine Tabellenzelle in Calc einzufügen, verwenden Sie %MOD1+; oder Umschalt+%MOD1+;." +msgstr "Um in Calc das aktuelle Datum in eine Tabellenzelle einzufügen, verwenden Sie [%MOD1+,], für die aktuelle Uhrzeit [%MOD1+Umschalt+,]." #. vAFKt #: 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 "Fügen Sie Ihre Metadaten mit »Einfügen ▸ Feldbefehl ▸ Weitere Feldbefehle… ▸ Register: Dokument« oder »Register: Dokumentinfo« in Ihr Writer-Dokument ein." +msgstr "Fügen Sie in Writer Ihre Metadaten mit »Einfügen ▸ Feldbefehl ▸ Weitere Feldbefehle… ▸ Register: Dokument« oder »Register: Dokumentinfo« ein." #. FHorg #: cui/inc/tipoftheday.hrc:93 @@ -2404,26 +2406,26 @@ #: cui/inc/tipoftheday.hrc:94 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Shift+Space to select the current row and %MOD1+Space to select the current column." -msgstr "Verwenden Sie in Calc Umschalt+Leertaste zur Auswahl der aktuellen Zeile und %MOD1+Leertaste zur Auswahl der aktuellen Spalte." +msgstr "Verwenden Sie in Calc [Umschalt+Leertaste] zur Auswahl der aktuellen Zeile und [%MOD1+Leertaste] zur Auswahl der aktuellen Spalte." #. MFv5S #: cui/inc/tipoftheday.hrc:95 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can move an object to another layer by holding it until its edges flash, then drag it to the tab of the layer you want to move it to." -msgstr "Sie können ein Objekt in Draw auf eine andere Ebene verschieben, indem Sie es so lange angeklickt halten, bis die Kanten blinken. Ziehen Sie es dann auf die Registerkarte der Ebene, auf die Sie es verschieben möchten." +msgstr "Sie können in Draw ein Objekt auf eine andere Ebene verschieben, indem Sie es so lange angeklickt halten, bis die Kanten blinken. Ziehen Sie es dann auf die Registerkarte der Ebene, auf die Sie es verschieben möchten." #. 3NRDt #: cui/inc/tipoftheday.hrc:96 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Data ▸ Validity allows you to create drop-down lists where the user selects a value instead of typing." -msgstr "Um in Calc eine Dropdown-Liste zu erstellen, aus welcher der Benutzer einen Wert auswählen kann anstatt diesen einzugeben, wählen Sie »Daten ▸ Gültigkeit…«." +msgstr "Um in Calc Dropdown-Listen zu erstellen, in denen der Benutzer einen Wert auswählt, statt ihn einzugeben, wählen Sie »Daten ▸ Gültigkeit…«." #. uikxZ #. local help missing #: cui/inc/tipoftheday.hrc:97 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Hold down %MOD1 and turn the mouse wheel to change the zoom factor." -msgstr "Halten Sie die Taste %MOD1 gedrückt und rollen Sie mit dem Mausrad, um den Maßstab zu verändern." +msgstr "Halten Sie [%MOD1] gedrückt und rollen Sie mit dem Mausrad, um den Maßstab zu verändern." #. 7QLxF #: cui/inc/tipoftheday.hrc:98 @@ -2435,7 +2437,7 @@ #: 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 "Um in Writer nur für eine bestimmte Absatzvorlage die Wörter zu ermitteln, wählen Sie »Bearbeiten ▸ Suchen und Ersetzen… ▸ Markierfeld: Absatzvorlagen«, wählen die gewünschte Vorlage im Bereich „Suchen“ aus und klicken auf die Schaltfläche »Alle suchen«. Lesen Sie nun die Zahl in der Statusleiste ab." +msgstr "Um in Writer nur für eine bestimmte Absatzvorlage die Wörter zu ermitteln, wählen Sie »Bearbeiten ▸ Suchen und ersetzen… ▸ Markierfeld: Absatzvorlagen«, wählen die gewünschte Vorlage im Bereich „Suchen“ aus und klicken auf die Schaltfläche »Alle suchen«. Lesen Sie nun das Ergebnis in der Statusleiste ab." #. VBCF7 #: cui/inc/tipoftheday.hrc:100 @@ -2453,7 +2455,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 "Um Ihre eigenen 2D-Formen in Draw zu erstellen, wählen Sie zwei oder mehr Objekte aus und experimentieren Sie mit den Möglichkeiten, die Ihnen »Form ▸ Kombinieren«, »Form ▸ Verschmelzen«, »Form ▸ Subtrahieren« und »Form ▸ Schneiden« bieten." +msgstr "Um in Draw Ihre eigenen 2D-Formen zu erstellen, wählen Sie zwei oder mehr Objekte aus und experimentieren Sie mit den Möglichkeiten, die Ihnen »Form ▸ Kombinieren«, »Form ▸ Verschmelzen«, »Form ▸ Subtrahieren« und »Form ▸ Schneiden« bieten." #. f6Lan #: cui/inc/tipoftheday.hrc:105 @@ -2465,7 +2467,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 "Wählen Sie »Ansicht ▸ Feldnamen« (oder [%MOD1+F9]), um in Writer zwischen den Feldnamen und dem tatsächlichen Wert zu wechseln." +msgstr "Um in Writer zwischen den Feldnamen und dem tatsächlichen Wert zu wechseln, wählen Sie »Ansicht ▸ Feldnamen« (oder [%MOD1+F9])." #. 5ZVTy #: cui/inc/tipoftheday.hrc:107 @@ -2496,13 +2498,13 @@ #: cui/inc/tipoftheday.hrc:111 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Did you know that you can attach comments to portions of text? Just use the shortcut %MOD1+%MOD2+C." -msgstr "Sie können in Writer auch Textabschnitte mit Kommentaren versehen. Verwenden Sie dazu einfach die Tastenkombination »%MOD1+%MOD2+C«." +msgstr "Sie können in Writer auch Textabschnitte mit Kommentaren versehen. Verwenden Sie dazu einfach [%MOD1+%MOD2+C]." #. wZDsJ #: cui/inc/tipoftheday.hrc:112 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move one or more paragraphs? No need to cut and paste: Use the keyboard shortcut %MOD1+%MOD2+Arrow (Up/Down)" -msgstr "Um einen oder mehrere Absätze in Writer ohne Ausschneiden und Einfügen zu verschieben, verwenden Sie %MOD1+%MOD2+Pfeil nach oben/unten." +msgstr "Um in Writer einen oder mehrere Absätze ohne Ausschneiden und Einfügen zu verschieben, verwenden Sie [%MOD1+%MOD2+Pfeil nach oben/unten]." #. JDGDc #: cui/inc/tipoftheday.hrc:113 @@ -2527,13 +2529,13 @@ #: cui/inc/tipoftheday.hrc:116 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Typing in bold, italics, or underlined in Writer you can continue with the default attributes using just the shortcut %MOD1+Shift+X (remove direct character formats)." -msgstr "Wenn Sie in Writer Text in fett, kursiv oder unterstrichen eingegeben haben, können Sie mit den Standardattributen fortfahren, indem Sie die Tastenkombination [%MOD1+Umschalt+X] verwenden (Direkte Zeichenformatierung entfernen)." +msgstr "Wenn Sie in Writer Text fett, kursiv oder unterstrichen eingegeben haben, können Sie mit den Standardattributen fortfahren, indem Sie [%MOD1+Umschalt+X] verwenden (Direkte Formatierung löschen)." #. iXjDF #: cui/inc/tipoftheday.hrc:117 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use %MOD1+%MOD2+Shift+V to paste the contents of the clipboard as unformatted text." -msgstr "Um den Inhalt der Zwischenablage als unformatierten Text in Writer einzufügen, verwenden Sie %MOD1+%MOD2+Umschalt+V." +msgstr "Um in Writer den Inhalt der Zwischenablage als unformatierten Text einzufügen, verwenden Sie [%MOD1+%MOD2+Umschalt+V]." #. TD8Ux #: cui/inc/tipoftheday.hrc:118 @@ -2545,7 +2547,7 @@ #: cui/inc/tipoftheday.hrc:119 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With Slide Show ▸ Custom Slide Show, reorder and pick slides to fit a slideshow to the needs of your viewers." -msgstr "Um in Impress Folien neu anzuordnen oder welche auszuwählen, damit die Präsentation an die Bedürfnisse Ihrer Zuschauer angepasst wird, wählen Sie »Bildschirmpräsentation ▸ Individuelle Präsentation«." +msgstr "Sie können in Impress »Bildschirmpräsentation ▸ Individuelle Präsentation« wählen und Folien neu anordnen oder auswählen, um die Präsentation an die Bedürfnisse Ihrer Zuschauer anzupassen." #. ZZZZo #: cui/inc/tipoftheday.hrc:120 @@ -2587,19 +2589,19 @@ #: 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 "Rechtsklicken Sie in die Statusleiste in %PRODUCTNAME Calc und wählen Sie »Anzahl Zellen«, um die Anzahl ausgewählter Zellen anzuzeigen." +msgstr "Rechtsklicken Sie in %PRODUCTNAME Calc in die Statusleiste und wählen Sie »Anzahl Zellen«, um die Anzahl ausgewählter Zellen anzuzeigen." #. h7afF #: cui/inc/tipoftheday.hrc:127 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to have two or more columns for just a part of a %PRODUCTNAME Writer page? Insert ▸ Section, set with Columns tab, and place text in that section." -msgstr "Um in %PRODUCTNAME Writer zwei oder mehr Spalten für lediglich einen Teil einer Seite festzulegen, wählen Sie »Einfügen ▸ Bereich… ▸ Register: Spalten« legen die Anzahl der Spalten fest und fügen Text in diesen Bereich ein." +msgstr "Um in %PRODUCTNAME Writer zwei oder mehr Spalten für lediglich einen Teil einer Seite festzulegen, wählen Sie »Einfügen ▸ Bereich… ▸ Register: Spalten«, legen die Anzahl der Spalten fest und fügen Text in diesen Bereich ein." #. DmbfV #: cui/inc/tipoftheday.hrc:128 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Data ▸ Statistics for sampling, descriptive statistics, analysis of variance, correlation, and much more in %PRODUCTNAME Calc." -msgstr "Um Stichproben, beschreibende Statistiken, Varianzanalysen, Korrelationen und vieles mehr mit %PRODUCTNAME Calc zu verwenden, wählen Sie »Daten ▸ Statistiken«." +msgstr "Um in %PRODUCTNAME Calc Stichproben, beschreibende Statistiken, Varianzanalysen, Korrelationen und vieles mehr zu verwenden, wählen Sie »Daten ▸ Statistiken«." #. cVaQ3 #: cui/inc/tipoftheday.hrc:129 @@ -2617,13 +2619,13 @@ #: 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 "Um eine Präsentation aus einer Reihe von Bildern mit der Funktion \"Fotoalbum\" zu erstellen, wählen Sie in %PRODUCTNAME Impress »Einfügen ▸ Medien ▸ Fotoalbum«." +msgstr "Um in %PRODUCTNAME Impress eine Präsentation aus einer Reihe von Bildern mit der Funktion \"Fotoalbum\" zu erstellen, wählen Sie »Einfügen ▸ Medien ▸ Fotoalbum«." #. BcK3A #: cui/inc/tipoftheday.hrc:132 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can show formulas instead of results with View ▸ Show Formula (or Tools ▸ Options ▸ %PRODUCTNAME Calc ▸ View ▸ Display ▸ Formulas)." -msgstr "Um Formeln anstelle von Ergebnissen in Calc anzuzeigen, wählen Sie »Ansicht ▸ Formel anzeigen« (oder »Extras ▸ Optionen… ▸ %PRODUCTNAME Calc ▸ Ansicht ▸ Bereich: Anzeige ▸ Markierfeld: Formeln«)." +msgstr "Um in Calc Formeln anstelle von Ergebnissen anzuzeigen, wählen Sie »Ansicht ▸ Formel anzeigen« (oder »Extras ▸ Optionen… ▸ %PRODUCTNAME Calc ▸ Ansicht ▸ Bereich: Anzeige ▸ Markierfeld: Formeln«)." #. bY8ve #: cui/inc/tipoftheday.hrc:133 @@ -2635,13 +2637,13 @@ #: cui/inc/tipoftheday.hrc:134 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Left-handed? Enable Tools ▸ Options ▸ Language Settings ▸ Languages ▸ Asian and check Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ View ▸ Ruler ▸ Right-aligned, which displays the scrollbar to the left." -msgstr "Wenn Sie Linkshänder sind, wählen Sie »Extras ▸ Optionen… ▸ Spracheinstellungen ▸ Sprachen ▸ Markierfeld: Asiatisch« und bestätigen mit \"OK\". Anschließend wählen Sie »Extras ▸ Optionen… ▸ %PRODUCTNAME Writer ▸ Ansicht ▸ Lineal ▸ Markierfeld: Rechts ausgerichtet«, wodurch das Lineal in Writer rechts und die Bildlaufleiste links angezeigt wird." +msgstr "Als Linkshänder wählen Sie in Writer »Extras ▸ Optionen… ▸ Spracheinstellungen ▸ Sprachen ▸ Markierfeld: Asiatisch« und »Extras ▸ Optionen… ▸ %PRODUCTNAME Writer ▸ Ansicht ▸ Lineal ▸ Markierfelder: Vertikales Lineal und Rechts ausgerichtet«, um das Lineal rechts und die Bildlaufleiste links anzuzeigen." #. Bs9w9 #: cui/inc/tipoftheday.hrc:135 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want your chapter titles to always begin a page? Edit Heading1 (paragraph style) ▸ Text Flow ▸ Breaks and check Insert ▸ Page ▸ Before." -msgstr "Um Ihre Kapitelüberschriften in Writer immer mit einer neuen Seite zu beginnen, klicken Sie in den Formatvorlagen mit der rechten Maustaste auf die Absatzvorlage Überschrift 1 und wählen »Ändern… ▸ Register: Textfluss ▸ Abschnitt: Umbrüche ▸ Markierfeld: Einfügen ▸ Typ: Seite ▸ Position: Vor«." +msgstr "Um in Writer Kapitelüberschriften immer mit einer neuen Seite zu beginnen, klicken Sie in den Formatvorlagen mit der rechten Maustaste auf die Absatzvorlage Überschrift 1 und wählen »Ändern… ▸ Register: Textfluss ▸ Abschnitt: Umbrüche ▸ Markierfeld: Einfügen ▸ Typ: Seite ▸ Position: Vor«." #. UVRgV #: cui/inc/tipoftheday.hrc:136 @@ -2653,7 +2655,7 @@ #: cui/inc/tipoftheday.hrc:137 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Shift+%MOD1+Del deletes from cursor to the end of the current sentence." -msgstr "»Umschalt+%MOD1+Entf« löscht in Writer vom Cursor bis zum Ende des aktuellen Satzes." +msgstr "In Writer löscht [%MOD1+Umschalt+Entf] vom Cursor bis zum Ende des aktuellen Satzes." #. XDhNo #: cui/inc/tipoftheday.hrc:138 @@ -2665,7 +2667,7 @@ #: 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 "Um die marschierenden Ameisen um Zellen in Calc zu stoppen, drücken Sie die Taste [Esc]. Der kopierte Inhalt bleibt zum Einfügen verfügbar." +msgstr "Um in Calc die „marschierenden Ameisen“ um Zellen zu stoppen, drücken Sie [Esc]. Der kopierte Inhalt bleibt zum Einfügen verfügbar." #. fsDVc #: cui/inc/tipoftheday.hrc:140 @@ -2738,7 +2740,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 "Im Navigator können Sie Überschriften und den zugehörigen Text im Writer-Dokument auswählen und verschieben." +msgstr "Mit dem Navigator können Sie in Writer Überschriften und den zugehörigen Text sowohl im Navigator als auch im Dokument auswählen und nach oben/unten verschieben." #. 8qYrk #: cui/inc/tipoftheday.hrc:152 @@ -2768,7 +2770,7 @@ #: cui/inc/tipoftheday.hrc:156 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your Writer document does not reopen with the text cursor at the same editing position it was when you saved it? Add First or Last name in Tools ▸ Options ▸ %PRODUCTNAME ▸ User Data ▸ First/last name." -msgstr "Um Ihr Writer-Dokument mit dem Textcursor an der gleichen Bearbeitungsposition zu öffnen, an der Sie es gespeichert haben, wählen Sie »Extras ▸ Optionen… ▸ %PRODUCTNAME ▸ Benutzerdaten« und überprüfen Sie, dass Vor-/Nachname nicht leer ist." +msgstr "Um Ihr Writer-Dokument mit dem Textcursor an der gleichen Bearbeitungsposition zu öffnen, an der Sie es gespeichert haben, wählen Sie »Extras ▸ Optionen… ▸ %PRODUCTNAME ▸ Benutzerdaten« und überprüfen Sie, dass Vor- oder Nachname nicht leer ist." #. udDRb #: cui/inc/tipoftheday.hrc:157 @@ -2817,7 +2819,7 @@ #: cui/inc/tipoftheday.hrc:164 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Define texts that you often use as AutoText. You will be able to insert them by their name, shortcut or toolbar in any Writer document." -msgstr "Legen Sie häufig verwendete Texte in Writer als AutoText fest. Fügen Sie diese anschließend mittels Namen, Tastenkombination oder Symbolleiste in jedes Writer-Dokument ein." +msgstr "Legen Sie in Writer häufig verwendete Texte als AutoText fest. Fügen Sie diese anschließend mittels Namen, Tastenkombination oder Symbolleiste in jedes Writer-Dokument ein." #. 7CjmG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/guide/autotext.html @@ -2855,20 +2857,20 @@ #: cui/inc/tipoftheday.hrc:170 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to manage the presentation of hyperlinks in a spreadsheet? Insert them with the HYPERLINK function." -msgstr "Um die Darstellung von Hyperlinks in Calc zu verwalten, fügen Sie diese mittels »Einfügen ▸ Hyperlink…« ein." +msgstr "Um in Calc die Darstellung von Hyperlinks zu verwalten, fügen Sie diese mittels »Einfügen ▸ Hyperlink…« ein." #. qyyJ4 #. local help missing #: 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 "Damit jede Tabelle in Calc ihren eigenen Maßstab hat, deaktivieren Sie das Markierfeld „Tabellen synchronisieren“ unter »Extras ▸ Optionen… ▸ %PRODUCTNAME Calc ▸ Ansicht ▸ Maßstab«." +msgstr "Damit in Calc jede Tabelle ihren eigenen Maßstab hat, deaktivieren Sie das Markierfeld „Tabellen synchronisieren“ unter »Extras ▸ Optionen… ▸ %PRODUCTNAME Calc ▸ Ansicht ▸ Maßstab«." #. qK7Xz #: cui/inc/tipoftheday.hrc:172 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can set a color for each tab: right-click the tab or use Sheet ▸ Sheet Tab Color." -msgstr "Sie können für jedes Tabellenregister in Calc eine Farbe festlegen: Klicken Sie mit der rechten Maustaste auf das Tabellenregister oder wählen Sie »Tabelle ▸ Registerfarbe…«." +msgstr "Sie können in Calc für jedes Tabellenregister eine Farbe festlegen: Klicken Sie mit der rechten Maustaste auf das Tabellenregister und dann auf »Registerfarbe…« oder wählen Sie »Tabelle ▸ Registerfarbe…«." #. YGUAo #: cui/inc/tipoftheday.hrc:173 @@ -2881,7 +2883,7 @@ #: cui/inc/tipoftheday.hrc:174 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Insert and number your formulas in one step: type fn then F3. An AutoText is inserted with formula and number aligned in a table." -msgstr "Um Formeln in Writer zu nummerieren, geben Sie fn ein und drücken dann F3. Ein Autotext wird eingefügt, wobei Formel und Nummer in einer Tabelle ausgerichtet sind." +msgstr "Um Formeln in Writer zu nummerieren, geben Sie fn ein und drücken dann [F3]. Ein AutoText wird eingefügt, wobei Formel und Nummer in einer Tabelle ausgerichtet sind." #. 8rA8u #: cui/inc/tipoftheday.hrc:175 @@ -2907,7 +2909,7 @@ #: cui/inc/tipoftheday.hrc:178 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Your numbers are displayed as ### in your spreadsheet? The column is too narrow to display all digits." -msgstr "Wenn Ihre Zahlen in Ihrer Calc-Tabelle als ### angezeigt werden, ist die Spalte zu schmal, um alle Ziffern anzuzeigen." +msgstr "Wenn in Calc Ihre Zahlen als ### angezeigt werden, ist die Spalte zu schmal, um alle Ziffern anzuzeigen." #. REoF7 #: cui/inc/tipoftheday.hrc:179 @@ -2920,7 +2922,7 @@ #: cui/inc/tipoftheday.hrc:180 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use the Connector tool from the Drawing toolbar in Draw/Impress to create nice flow charts and optionally copy/paste the object into Writer." -msgstr "Um Flussdiagramme zu erstellen, verwenden Sie in Draw/Impress die Verbinder in der Symbolleiste Zeichnung und kopieren das fertige Objekt in Writer." +msgstr "Um in Draw/Impress Flussdiagramme zu erstellen, verwenden Sie die Verbinder in der Symbolleiste Zeichnung und kopieren das fertige Objekt in Writer." #. Uq3tZ #: cui/inc/tipoftheday.hrc:181 @@ -2939,7 +2941,7 @@ #: cui/inc/tipoftheday.hrc:183 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To select a contiguous range of cells containing data and bounded by empty row and columns use %MOD1+* (numeric key pad)." -msgstr "Verwenden Sie in Calc %MOD1+Stern (*) (auf dem Ziffernblock), um einen zusammenhängenden Bereich von Zellen auszuwählen, die Daten enthalten und durch leere Zeilen und Spalten begrenzt sind." +msgstr "Verwenden Sie in Calc [%MOD1+* (Stern auf dem Ziffernblock)], um einen zusammenhängenden Bereich von Zellen auszuwählen, die Daten enthalten und durch leere Zeilen und Spalten begrenzt sind." #. u4FZP #: cui/inc/tipoftheday.hrc:184 @@ -2951,7 +2953,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 "Um Formeln aus Calc in CSV zu exportieren, wählen Sie »Datei ▸ Speichern unter… ▸ Typ: Text CSV«, aktivieren Sie \"Filtereinstellungen bearbeiten\" und aktivieren Sie im nächsten Dialog \"Formeln anstatt berechneter Werte speichern\"." +msgstr "Um Formeln aus Calc in CSV zu exportieren, wählen Sie »Datei ▸ Speichern unter… ▸ Dateityp: CSV (*.csv)«, aktivieren Sie \"Filtereinstellungen bearbeiten\" und aktivieren Sie im übernächsten Dialog \"Formeln anstatt berechneter Werte speichern\"." #. XLN9z #: cui/inc/tipoftheday.hrc:186 @@ -2976,7 +2978,7 @@ #: cui/inc/tipoftheday.hrc:189 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to select a large range of cells without scrolling? Type the range reference (e.g. A1:A1000) in the name box then Enter." -msgstr "Um in Calc einen großen Zellenbereich auszuwählen, ohne einen Bildlauf durchzuführen, geben Sie die Bereichsreferenz (beispielsweise A1:A1000) in das Namensfeld ein und drücken die Eingabetaste." +msgstr "Um in Calc einen großen Zellenbereich auszuwählen, ohne einen Bildlauf durchzuführen, geben Sie die Bereichsreferenz (beispielsweise A1:A1000) in das Namensfeld ein und drücken die [Eingabetaste]." #. Tc7Nf #: cui/inc/tipoftheday.hrc:190 @@ -3013,7 +3015,7 @@ #: cui/inc/tipoftheday.hrc:195 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Move a column in Calc between two others in one step? Click the header then a cell in the column, keep mouse button and move to the target with %MOD2 key." -msgstr "Um eine Spalte in Calc in einem Schritt zwischen zwei andere zu verschieben, klicken Sie auf die Überschrift und halten Sie die Taste [%MOD2] gedrückt, während sie auf eine Zelle in der Spalte klicken und diese an das Ziel ziehen." +msgstr "Um in Calc eine Spalte in einem Schritt zwischen zwei andere zu verschieben, klicken Sie auf die Überschrift und halten [%MOD2] gedrückt, während sie auf eine Zelle in der Spalte klicken und diese an das Ziel ziehen." #. 3xJeA #: cui/inc/tipoftheday.hrc:196 @@ -3032,7 +3034,7 @@ #: cui/inc/tipoftheday.hrc:198 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Do not use tabs to space items on a Writer document. Depending on what you are trying to do, a borderless table can be a better choice." -msgstr "Um Elemente in einem Writer-Dokument anzuordnen, kann, je nach dem, was Sie erreichen möchten, eine rahmenlose Tabelle die bessere Wahl gegenüber der Verwendung von Tabulatoren sein." +msgstr "Um in Writer Elemente zu trennen, kann eine rahmenlose Tabelle die bessere Wahl gegenüber der Verwendung von Tabulatoren sein." #. 6GtGH #: cui/inc/tipoftheday.hrc:199 @@ -3044,7 +3046,7 @@ #: cui/inc/tipoftheday.hrc:200 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME can automatically add a numbered caption when you insert objects. See Tools ▸ Options ▸ %PRODUCTNAME Writer ▸ AutoCaption." -msgstr "Um %PRODUCTNAME beim Einfügen von Objekten in Writer automatisch eine nummerierte Beschriftung hinzufügen zu lassen, wählen Sie »Extras ▸ Optionen… ▸ %PRODUCTNAME Writer ▸ Automatische Beschriftung«." +msgstr "Um in %PRODUCTNAME Writer beim Einfügen von Objekten automatisch eine nummerierte Beschriftung hinzuzufügen, wählen Sie »Extras ▸ Optionen… ▸ %PRODUCTNAME Writer ▸ Automatische Beschriftung«." #. 8kpGG #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/shared/optionen/01041100.html @@ -3058,7 +3060,7 @@ #: cui/inc/tipoftheday.hrc:202 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Keep column headers of a sheet visible when scrolling lines via View ▸ Freeze Cells ▸ Freeze First Row." -msgstr "Um die Spaltenüberschriften einer Calc-Tabelle beim rollen durch Zeilen sichtbar zu behalten, wählen Sie »Ansicht ▸ Zellen fixieren ▸ Erste Zeile fixieren«." +msgstr "Die Spaltenüberschriften einer Calc-Tabelle bleiben beim Rollen durch Zeilen sichtbar, wenn Sie »Ansicht ▸ Zellen fixieren ▸ Erste Zeile fixieren« wählen." #. mCfdK #: cui/inc/tipoftheday.hrc:203 @@ -3070,7 +3072,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 "Wenden Sie in Writer Absatzvorlagen für Überschriften an, indem Sie %MOD1+1 für Überschrift 1, %MOD1+2 für Überschrift 2 und so weiter drücken." +msgstr "Wenden Sie in Writer Absatzvorlagen für Überschriften an, indem Sie [%MOD1+1] für Überschrift 1, [%MOD1+2] für Überschrift 2 und so weiter drücken." #. DA82R #: cui/inc/tipoftheday.hrc:205 @@ -3082,7 +3084,7 @@ #: cui/inc/tipoftheday.hrc:206 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Edit ▸ Find and Replace lets you insert special characters directly: right click in input fields or press Shift+%MOD1+S." -msgstr "Um im Dialog unter »Bearbeiten ▸ Suchen und Ersetzen…« Sonderzeichen direkt einzufügen, klicken Sie mit rechts in das Eingabefeld oder drücken Sie [Umschalt+%MOD1+S]." +msgstr "Um im Dialog unter »Bearbeiten ▸ Suchen und ersetzen…« Sonderzeichen direkt einzufügen, klicken Sie mit rechts in das Eingabefeld oder drücken Sie [%MOD1+Umschalt+S]." #. vNBR3 #: cui/inc/tipoftheday.hrc:207 @@ -3106,13 +3108,13 @@ #: cui/inc/tipoftheday.hrc:210 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Got many images in your Writer document? Speed up the display by disabling View ▸ Images and charts." -msgstr "Um die Anzeige in Ihrem Writer-Dokument bei vielen Bildern zu beschleunigen, deaktivieren Sie »Ansicht ▸ Bilder und Diagramme«." +msgstr "Um in Writer die Anzeige bei vielen Bildern zu beschleunigen, deaktivieren Sie »Ansicht ▸ Bilder und Diagramme«." #. Y85ij #: cui/inc/tipoftheday.hrc:211 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Sheet ▸ Fill Cells ▸ Random Number to generate a random series based on various distributions." -msgstr "Um eine zufällige, auf verschiedenen Verteilungen basierende Reihe in Calc zu erstellen, wählen Sie »Tabelle ▸ Zellen ausfüllen ▸ Zufallszahlen…«." +msgstr "Um in Calc eine zufällige, auf verschiedenen Verteilungen basierende Reihe zu erstellen, wählen Sie »Tabelle ▸ Zellen ausfüllen ▸ Zufallszahlen…«." #. Y24mZ #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/02140700.html @@ -3125,7 +3127,7 @@ #: 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 "Um festzulegen, dass Text vor der Kapitelnummer in Writer angezeigt wird, wählen Sie »Extras ▸ Kapitelnummerierung… ▸ Register: Nummerierung« und geben Sie beispielsweise \"Kapitel\" im Feld „Davor“ ein, um „Kapitel 1“ anzuzeigen." +msgstr "Um in Writer festzulegen, dass Text vor der Kapitelnummer angezeigt wird, wählen Sie »Extras ▸ Kapitelnummerierung… ▸ Register: Nummerierung« und geben beispielsweise \"Kapitel\" im Feld „Davor“ ein, um „Kapitel 1“ anzuzeigen." #. z3rPd #: cui/inc/tipoftheday.hrc:214 @@ -3149,7 +3151,7 @@ #: cui/inc/tipoftheday.hrc:217 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sign existing PDF files and also verify those signatures." -msgstr "Es lassen sich bestehende PDF-Dateien signieren und deren Signaturen überprüfen." +msgstr "Sie können vorhandene PDF-Dateien signieren und diese Signaturen auch überprüfen." #. hDiRV #. local help missing @@ -3162,7 +3164,7 @@ #: cui/inc/tipoftheday.hrc:219 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Use Format ▸ Conditional Formatting ▸ Manage in Calc to find out which cells have been defined with conditional formatting." -msgstr "Um herauszufinden, für welche Zellen in Calc bedingte Formatierungen definiert sind, wählen Sie »Format ▸ Bedingte Formatierung ▸ Verwalten…«." +msgstr "Um in Calc herauszufinden, für welche Zellen bedingte Formatierungen definiert sind, wählen Sie »Format ▸ Bedingte Formatierung ▸ Verwalten…«." #. tWQPD #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/scalc/01/05120000.html @@ -3212,7 +3214,7 @@ #: 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 "Um in Calc nur einen Kommentar zu kopieren ohne den Inhalt des Ziels zu verlieren, verwenden Sie den Befehl Inhalte einfügen, demarkieren im Dialog alles bis auf \"Kommentare\" und verwenden die Rechenoperation \"Addieren\"." +msgstr "Um in Calc nur einen Kommentar zu kopieren, ohne den Inhalt des Ziels zu verlieren, verwenden Sie den Befehl Inhalte einfügen, demarkieren im Dialog alles bis auf \"Kommentare\" und verwenden die Rechenoperation \"Addieren\"." #. Mu27G #: cui/inc/tipoftheday.hrc:228 @@ -3224,25 +3226,25 @@ #: cui/inc/tipoftheday.hrc:229 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "When editing a cell in place, you can right click and Insert fields: Date, Sheet name, Document title, etc." -msgstr "Sie können, wenn Sie gerade eine Zelle in Calc bearbeiten, Feldbefehle wie Datum, Tabellenname, Dokumenttitel und so weiter einfügen, indem Sie mit der rechten Maustaste klicken und Feldbefehl wählen." +msgstr "In Calc können Sie, wenn Sie gerade eine Zelle bearbeiten, Feldbefehle wie Datum, Tabellenname, Dokumenttitel und so weiter einfügen, indem Sie mit der rechten Maustaste klicken und Feldbefehl wählen." #. qAVmk #: cui/inc/tipoftheday.hrc:230 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Need to move a Writer table? Table ▸ Select ▸ Table and Insert ▸ Frame ▸ Frame and move where you want." -msgstr "Um die Seitenzahl aus Ihrem Inhaltsverzeichnis in Writer zu entfernen, wählen Sie »Einfügen ▸ Verzeichnis ▸ Verzeichnis…« (oder klicken mit der rechten Maustaste und bearbeiten das zuvor eingefügte Verzeichnis). Löschen Sie auf der Registerkarte „Einträge“ die Seitenzahl (#) aus der Zeile Struktur." +msgstr "Um in Writer die Seitenzahl aus Ihrem Inhaltsverzeichnis zu entfernen, wählen Sie »Einfügen ▸ Verzeichnis ▸ Verzeichnis…« (oder klicken mit der rechten Maustaste und bearbeiten das zuvor eingefügte Verzeichnis). Löschen Sie auf der Registerkarte „Einträge“ die Seitenzahl (#) aus der Zeile Struktur." #. TmaSP #: cui/inc/tipoftheday.hrc:231 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "With Tools ▸ AutoText ▸ AutoText ▸ Import you can select a Word document or a template containing the AutoText entries that you want to import." -msgstr "Um Autotexteinträge aus einem Word-Dokument oder eine Vorlage zu importieren, wählen Sie »Extras ▸ AutoText… ▸ Schaltfläche: AutoText ▸ Importieren…«." +msgstr "Um Autotexteinträge aus einem Word-Dokument oder einer Vorlage zu importieren, wählen Sie »Extras ▸ AutoText… ▸ Schaltfläche: AutoText ▸ Importieren…«." #. kwxqQ #: 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 "Anstatt in Writer Leerzeilen einzufügen, um zwei Absätze zu trennen, wählen Sie besser »Format ▸ Absatz… ▸ Register: Einzüge und Abstände ▸ Bereich: Abstand ▸ Eigenschaft: Unter Absatz« und ändern Sie dort den Wert ab oder passen Sie an gleicher Stelle die Absatzvorlage an." +msgstr "Anstatt in Writer Leerzeilen einzufügen, um zwei Absätze zu trennen, wählen Sie besser »Format ▸ Absatz… ▸ Register: Einzüge und Abstände ▸ Bereich: Abstand ▸ Eigenschaft: Unter Absatz« und ändern dort den Wert ab oder passen an gleicher Stelle die Absatzvorlage an." #. rxTGc #: cui/inc/tipoftheday.hrc:233 @@ -3266,7 +3268,7 @@ #: cui/inc/tipoftheday.hrc:236 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Add background images to spreadsheets via Insert ▸ Image or drag a background from the Gallery, then Format ▸ Arrange ▸ To Background." -msgstr "Um ein Hintergrundbild zu einer Calc-Tabelle hinzuzufügen, wählen Sie »Einfügen ▸ Bild…« oder ziehen Sie es aus der Gallery in die Tabelle, wählen Sie dann »Format ▸ Anordnung ▸ Im Hintergrund«." +msgstr "Um ein Hintergrundbild zu einer Calc-Tabelle hinzuzufügen, wählen Sie »Einfügen ▸ Bild…« oder ziehen Sie es aus der Gallery in die Tabelle und wählen dann »Format ▸ Anordnung ▸ Im Hintergrund«." #. khFDu #: cui/inc/tipoftheday.hrc:237 @@ -3303,7 +3305,7 @@ #: cui/inc/tipoftheday.hrc:242 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to center cells on a printed page in Calc? Format ▸ Page, Page ▸ Layout settings ▸ Table alignment." -msgstr "Um Zellen auf einer gedruckten Seite in Calc zu zentrieren, wählen Sie »Format ▸ Seitenvorlage… ▸ Register: Seite ▸ Bereich: Layout-Einstellungen ▸ Markierfelder: Tabellenausrichtung«." +msgstr "Um in Calc Zellen auf einer gedruckten Seite zu zentrieren, wählen Sie »Format ▸ Seitenvorlage… ▸ Register: Seite ▸ Bereich: Layout-Einstellungen ▸ Markierfelder: Tabellenausrichtung«." #. dpyeU #: cui/inc/tipoftheday.hrc:243 @@ -3346,14 +3348,14 @@ #: cui/inc/tipoftheday.hrc:249 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to find the words in bold in a Writer document? Edit ▸ Find and Replace ▸ Other options ▸ Attributes ▸ Font weight." -msgstr "Um fett geschriebene Wörter in einem Writer-Dokument zu finden, wählen Sie »Bearbeiten ▸ Suchen und Ersetzen… ▸ Weitere Optionen… ▸ Attribute… ▸ Schriftstärke«." +msgstr "Um in Writer fett geschriebene Wörter zu finden, wählen Sie »Bearbeiten ▸ Suchen und ersetzen… ▸ Weitere Optionen… ▸ Attribute… ▸ Schriftstärke«." #. ppAeT #. local help missing #: cui/inc/tipoftheday.hrc:250 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "You can sort paragraphs or table rows alphabetically or numerically per Tools ▸ Sort." -msgstr "Mittels »Extras ▸ Sortieren…« lassen sich Absätze oder Tabellenzeilen in Writer alphabetisch oder numerisch sortieren." +msgstr "In Writer lassen sich Absätze oder Tabellenzeilen mit »Extras ▸ Sortieren…« alphabetisch oder numerisch sortieren." #. 26HAu #. https://help.libreoffice.org/%PRODUCTVERSION/%LANGUAGENAME/text/swriter/01/06100000.html @@ -3372,7 +3374,7 @@ #: cui/inc/tipoftheday.hrc:253 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Calculate loan repayments with Calc: eg. PMT(2%/12;36;2500) interest rate per payment period 2%/12, 36 months, loan amount 2500." -msgstr "Berechnen Sie Darlehnsrückzahlungen mit Calc, beispielsweise =RMZ(2%/12;36;2500) für einen Zinssatz pro Periode von 2%/12, 36 Perioden und einen Darlehnsbetrag von 2500." +msgstr "Mit Calc berechnen Sie Darlehnsrückzahlungen, beispielsweise =RMZ(2%/12;36;2500) für einen Zinssatz pro Periode von 2%/12, 36 Perioden und einen Darlehnsbetrag von 2500." #. QZAFw #. local help missing @@ -3392,7 +3394,7 @@ #: cui/inc/tipoftheday.hrc:256 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To change the number of a page in Writer, go to the properties of the first paragraph and at the Text Flow tab check Break ▸ Insert and enter the number." -msgstr "Um die Seitennummer in Writer zu ändern, klicken Sie in den ersten Absatz der Seite und wählen »Format ▸ Absatz… ▸ Register: Textfluss ▸ Abschnitt: Umbrüche ▸ Markierfeld: Einfügen« und geben Sie die Nummer ein." +msgstr "Um in Writer die Seitennummer zu ändern, klicken Sie in den ersten Absatz der Seite und wählen »Format ▸ Absatz… ▸ Register: Textfluss ▸ Abschnitt: Umbrüche ▸ Markierfeld: Einfügen« und geben Sie die Nummer ein." #. AgQyA #: cui/inc/tipoftheday.hrc:257 @@ -3404,7 +3406,7 @@ #: cui/inc/tipoftheday.hrc:258 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Strange error code in Calc, Err: followed by a number? This page gives the explanation:" -msgstr "Wenn Sie einen merkwürdigen Fehlercode in Calc sehen, Fehler: gefolgt von einer Zahl, gibt folgende Seite die Erklärung:" +msgstr "Wenn Sie in Calc einen merkwürdigen Fehlercode sehen, Fehler: gefolgt von einer Zahl, gibt folgende Seite die Erklärung:" #. BJ5aN #. local help missing @@ -3424,7 +3426,7 @@ #: cui/inc/tipoftheday.hrc:261 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Unable to modify or delete a custom cell style? Check all sheets, none should be protected." -msgstr "Falls Sie eine benutzerdefinierte Zellvorlage in Calc nicht löschen können, überprüfen Sie alle Tabellen, dass keine geschützt ist." +msgstr "Falls Sie in Calc eine benutzerdefinierte Zellvorlage nicht löschen können, überprüfen Sie alle Tabellen, keine sollte geschützt sein." #. 55Nfb #: cui/inc/tipoftheday.hrc:262 @@ -3437,13 +3439,13 @@ #: cui/inc/tipoftheday.hrc:263 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want to know if a cell is referred in formulas of other cells? Tools ▸ Detective ▸ Trace Dependents (Shift+F5)." -msgstr "Um herauszufinden, ob auf eine Zelle in Calc ein Bezug in Formeln anderer Zellen besteht, wählen Sie »Extras ▸ Detektiv ▸ Spur zum Nachfolger« [Umschalt+F5]." +msgstr "Um in Calc herauszufinden, ob auf eine Zelle ein Bezug in Formeln anderer Zellen besteht, wählen Sie »Extras ▸ Detektiv ▸ Spur zum Nachfolger« [Umschalt+F5]." #. QeBjt #: cui/inc/tipoftheday.hrc:264 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "In the replace input field of auto correct options you can use the wildcards .*" -msgstr "Im Eingabefeld Ersetzen der Autokorrektur-Optionen können Sie den Platzhalter .* verwenden." +msgstr "Im Eingabefeld „Ersetzen“ der Autokorrektur-Optionen können Sie den Platzhalter \".*\" verwenden." #. G7J8m #: cui/inc/tipoftheday.hrc:265 @@ -3455,7 +3457,7 @@ #: cui/inc/tipoftheday.hrc:266 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "To search in several spreadsheets, select them before you start the search." -msgstr "Um in mehreren Tabellendokumenten zu suchen, wählen Sie sie aus, bevor Sie die Suche starten." +msgstr "Um in mehreren Tabellen zu suchen, wählen Sie sie aus, bevor Sie die Suche starten." #. Jd6KJ #: cui/inc/tipoftheday.hrc:267 @@ -3467,13 +3469,13 @@ #: cui/inc/tipoftheday.hrc:268 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "%PRODUCTNAME helps you not to enter two or more spaces in Writer. Check Tools ▸ AutoCorrect ▸ AutoCorrect Options ▸ Options ▸ Ignore double spaces." -msgstr "%PRODUCTNAME hilft Ihnen dabei, in Writer zwei oder mehr aufeinanderfolgende Leerzeichen zu vermeiden. Wählen Sie »Extras ▸ AutoKorrektur ▸ Autokorrektur-Optionen… ▸ Register: Optionen ▸ Markierfeld: Doppelte Leerzeichen ignorieren«." +msgstr "In %PRODUCTNAME Writer können Sie zwei oder mehr aufeinanderfolgende Leerzeichen vermeiden. Wählen Sie »Extras ▸ AutoKorrektur ▸ Autokorrektur-Optionen… ▸ Register: Optionen ▸ Markierfeld: Doppelte Leerzeichen ignorieren«." #. 3Fjtd #: cui/inc/tipoftheday.hrc:269 msgctxt "RID_CUI_TIPOFTHEDAY" msgid "Want the cursor to go into the cell to the right, after entering a value in Calc? Use the Tab key instead of Enter." -msgstr "Um den Cursor nach Eingabe eines Wertes in Calc in die Zelle rechts springen zu lassen, verwenden Sie die Tabulatortaste anstelle der Eingabetaste." +msgstr "Um in Calc den Cursor nach Eingabe eines Wertes in die Zelle rechts daneben springen zu lassen, verwenden Sie die Tabulatortaste anstelle der Eingabetaste." #. UggLQ #: cui/inc/tipoftheday.hrc:270 @@ -3558,7 +3560,7 @@ #: cui/inc/toolbarmode.hrc:23 msgctxt "RID_CUI_TOOLBARMODES" msgid "Standard user interface with menu, toolbar, and collapsed sidebar. Intended for users who are familiar with the classic interface." -msgstr "Die Benutzeroberfläche \"Standard\" mit Menü, Symbolleiste und eingeklappter Seitenleiste. Vorgesehen für Benutzer, die mit der klassischen Oberfläche vertraut sind." +msgstr "Die standardmäßige Benutzeroberfläche \"Symbolleisten\" mit Menüleiste, Symbolleisten und eingeklappter Seitenleiste. Vorgesehen für Benutzer, die mit der klassischen Oberfläche vertraut sind." #. BoVy3 #: cui/inc/toolbarmode.hrc:24 @@ -3570,43 +3572,43 @@ #: cui/inc/toolbarmode.hrc:25 msgctxt "RID_CUI_TOOLBARMODES" msgid "Standard user interface but with single-line toolbar. Intended for use on small screens." -msgstr "Die Benutzeroberfläche \"Kompakt\" ist ähnlich wie \"Standard\", kommt jedoch mit einer einzelnen Symbolleiste aus. Vorgesehen ist sie für die Verwendung auf kleinen Bildschirmen." +msgstr "Die Benutzeroberfläche \"Symbolleisten kompakt\" ist ähnlich wie \"Symbolleisten\", kommt jedoch mit einer einzelnen Symbolleiste aus. Sie ist für die Verwendung auf kleinen Bildschirmen vorgesehen." #. wKg2Q #: cui/inc/toolbarmode.hrc:26 msgctxt "RID_CUI_TOOLBARMODES" msgid "Standard user interface with expanded sidebar. Expert users who want to quickly change many different properties are advised to use this UI." -msgstr "Benutzeroberfläche Standard mit erweiterter Seitenleiste. Geeignet für erfahrene Benutzer, die schnell viele verschiedene Eigenschaften ändern möchten." +msgstr "Wie die Benutzeroberfläche \"Symbolleisten\" mit erweiterter Seitenleiste. Geeignet für erfahrene Benutzer, die schnell viele verschiedene Eigenschaften ändern möchten." #. qXq4A #: cui/inc/toolbarmode.hrc:27 msgctxt "RID_CUI_TOOLBARMODES" msgid "The Tabbed Compact variant aims to be familiar with the Microsoft Office interface, yet occupying less space for smaller screens." -msgstr "Die Variante \"In Registern kompakt\" orientiert sich an der Microsoft Office-Oberfläche, nimmt aber weniger Platz für kleinere Bildschirme ein." +msgstr "Die Benutzeroberfläche \"In Registern kompakt\" orientiert sich an der Microsoft Office-Oberfläche, nimmt aber weniger Platz für kleinere Bildschirme ein." #. oZV6K #: cui/inc/toolbarmode.hrc:28 msgctxt "RID_CUI_TOOLBARMODES" msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This full variant favors functions and is slightly larger than others." -msgstr "Die Oberfläche \"Gruppiert\" bietet Zugriff auf Funktionen in Gruppen, mit Symbolen für die am häufigsten verwendeten Funktionen und Dropdown-Menüs für andere. Diese Vollvariante begünstigt Funktionen und ist etwas größer als andere." +msgstr "Die Benutzeroberfläche \"Gruppiert\" bietet Zugriff auf Funktionen in Gruppen, mit Symbolen für die am häufigsten verwendeten Funktionen und Dropdown-Menüs für andere. Diese Vollvariante begünstigt Funktionen und ist etwas größer als andere." #. acQKG #: cui/inc/toolbarmode.hrc:29 msgctxt "RID_CUI_TOOLBARMODES" msgid "The Groupedbar interface provides access to functions in groups, with icons for most-frequently used features, and dropdown menus for others. This compact variant favors vertical space." -msgstr "Die Oberfläche \"Gruppiert\" bietet Zugriff auf Funktionen in Gruppen, mit Symbolen für die am häufigsten verwendeten Funktionen und Dropdown-Menüs für andere. Diese kompakte Variante bevorzugt den vertikalen Raum." +msgstr "Die Benutzeroberfläche \"Gruppiert kompakt\" bietet Zugriff auf Funktionen in Gruppen, mit Symbolen für die am häufigsten verwendeten Funktionen und Dropdown-Menüs für andere. Diese kompakte Variante bevorzugt den vertikalen Raum." #. eGMCZ #: cui/inc/toolbarmode.hrc:30 msgctxt "RID_CUI_TOOLBARMODES" msgid "The Contextual Single interface shows functions in a single-line toolbar with context-dependent content." -msgstr "Die Oberfläche \"Kontextabhängig kompakt\" zeigt Funktionen in einer einzeiligen Symbolleiste mit kontextabhängigem Inhalt an." +msgstr "Die Benutzeroberfläche \"Kontextabhängig kompakt\" zeigt Funktionen in einer einzeiligen Symbolleiste mit kontextabhängigem Inhalt an." #. KFPmR #: cui/inc/toolbarmode.hrc:31 msgctxt "RID_CUI_TOOLBARMODES" msgid "The Contextual Groups interface focuses on beginners. It exposes the most frequently used functions on groups with the core action as large icon and a couple of small additional features. All functions have a label. Depending on the context, an additional section provides access to those functions." -msgstr "Die Oberfläche \"Kontextabhängig gruppiert\" richtet sich an Einsteiger. Sie stellt die am häufigsten verwendeten Funktionen für Gruppen mit der Kernaktion als großes Symbol und ein paar kleinen Zusatzfunktionen dar. Alle Funktionen haben eine Beschriftung. Je nach Kontext bietet ein zusätzlicher Abschnitt Zugriff auf diese Funktionen." +msgstr "Die Benutzeroberfläche \"Kontextabhängig gruppiert\" richtet sich an Einsteiger. Sie stellt die am häufigsten verwendeten Funktionen für Gruppen mit der Kernaktion als großes Symbol und ein paar kleinen Zusatzfunktionen dar. Alle Funktionen haben eine Beschriftung. Je nach Kontext bietet ein zusätzlicher Abschnitt Zugriff auf diese Funktionen." #. Xnz8J #: cui/inc/treeopt.hrc:33 @@ -5705,7 +5707,7 @@ #: cui/uiconfig/ui/breaknumberoption.ui:115 msgctxt "breaknumberoption|beforelabel" msgid "Characters Before Break" -msgstr "Zeichen vor Umbruch" +msgstr "Zeichen vor Zeilenumbruch" #. upKGC #: cui/uiconfig/ui/breaknumberoption.ui:145 @@ -5717,7 +5719,7 @@ #: cui/uiconfig/ui/breaknumberoption.ui:154 msgctxt "breaknumberoption|afterlabel" msgid "Characters After Break" -msgstr "Zeichen nach Umbruch" +msgstr "Zeichen nach Zeilenumbruch" #. XN4Hs #: cui/uiconfig/ui/breaknumberoption.ui:184 @@ -5747,7 +5749,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:89 msgctxt "bulletandposition|DrawPRTLDialog" msgid "Bullets and Numbering" -msgstr "Nummerierung und Aufzählung" +msgstr "Aufzählungszeichen und Nummerierung" #. aatWZ #: cui/uiconfig/ui/bulletandposition.ui:220 @@ -5795,7 +5797,7 @@ #: cui/uiconfig/ui/bulletandposition.ui:340 msgctxt "bulletandposition|bullet" msgid "Select..." -msgstr "Auswahl…" +msgstr "Auswählen…" #. sNFJM #: cui/uiconfig/ui/bulletandposition.ui:346 @@ -7145,7 +7147,7 @@ #: cui/uiconfig/ui/colorpage.ui:136 msgctxt "colorpage|label20" msgid "Recent Colors" -msgstr "Zuletzt verwendete Farben" +msgstr "Z_uletzt verwendete Farben" #. MwnMh #: cui/uiconfig/ui/colorpage.ui:190 @@ -7163,7 +7165,7 @@ #: cui/uiconfig/ui/colorpage.ui:218 msgctxt "colorpage|delete" msgid "Delete" -msgstr "Löschen" +msgstr "Lö_schen" #. CAmRV #: cui/uiconfig/ui/colorpage.ui:224 @@ -7175,7 +7177,7 @@ #: cui/uiconfig/ui/colorpage.ui:238 msgctxt "colorpage|label22" msgid "Custom Palette" -msgstr "Palette anpassen" +msgstr "Palette a_npassen" #. 5jjvt #: cui/uiconfig/ui/colorpage.ui:302 @@ -7319,7 +7321,7 @@ #: cui/uiconfig/ui/colorpage.ui:949 msgctxt "colorpage|edit" msgid "Pick" -msgstr "_Auswählen…" +msgstr "Aus_wählen…" #. DpUCG #: cui/uiconfig/ui/colorpage.ui:970 @@ -8303,7 +8305,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 "Dieses Eingabefeld ist nur verfügbar, wenn Sie ein Ausnahmenwörterbuch oder ein sprachabhängiges benutzerdefiniertes Wörterbuch bearbeiten. In Ausnahmenwörterbüchern zeigt das Feld den alternativen Vorschlag für das aktuelle Wort im Textfeld \"Wort\". In sprachabhängigen benutzerdefinierten Wörterbüchern enthält das Feld ein bekanntes Stammwort als Modell für die Anbringung des neuen Wortes oder dessen Verwendung in zusammengesetzten Wörtern. Beispielsweise führt in einem deutschen benutzerdefinierten Wörterbuch das neue Wort „Litschi“ mit dem Modellwort „Gummi“ zur Erkennung von „Litschis“, „Litschibaum“, „Litschifrucht“ und so weiter." +msgstr "Dieses Eingabefeld ist nur verfügbar, wenn Sie ein Ausnahmewörterbuch oder ein sprachabhängiges benutzerdefiniertes Wörterbuch bearbeiten. In Ausnahmewörterbüchern zeigt das Feld den alternativen Vorschlag für das aktuelle Wort im Textfeld \"Wort\". In sprachabhängigen benutzerdefinierten Wörterbüchern enthält das Feld ein bekanntes Stammwort als Modell für die Anbringung des neuen Wortes oder dessen Verwendung in zusammengesetzten Wörtern. Beispielsweise führt in einem deutschen benutzerdefinierten Wörterbuch das neue Wort „Litschi“ mit dem Modellwort „Gummi“ zur Erkennung von „Litschis“, „Litschibaum“, „Litschifrucht“ und so weiter." #. 5EwBs #: cui/uiconfig/ui/editdictionarydialog.ui:203 @@ -8351,7 +8353,7 @@ #: cui/uiconfig/ui/editdictionarydialog.ui:415 msgctxt "EditDictionaryDialog" msgid "In the Edit Custom Dictionary dialog you have the option to enter new terms or edit existing entries." -msgstr "Im Dialog „Benutzerdefiniertes Wörterbuch bearbeiten“ haben Sie die Möglichkeit, neue Begriffe einzugeben oder vorhandene Einträge zu bearbeiten." +msgstr "Im Dialog „Benutzerwörterbuch bearbeiten“ haben Sie die Möglichkeit, neue Begriffe einzugeben oder vorhandene Einträge zu bearbeiten." #. XEUyG #: cui/uiconfig/ui/editmodulesdialog.ui:34 @@ -8363,7 +8365,7 @@ #: cui/uiconfig/ui/editmodulesdialog.ui:109 msgctxt "editmodulesdialog|moredictslink" msgid "Get more dictionaries online..." -msgstr "Hier erhalten Sie online weitere Wörterbücher…" +msgstr "Hier erhalten Sie online weitere Wörterbücher" #. ibDJj #: cui/uiconfig/ui/editmodulesdialog.ui:131 @@ -10404,7 +10406,7 @@ #: cui/uiconfig/ui/hatchpage.ui:328 msgctxt "hatchpage|backgroundcolor" msgid "Background Color" -msgstr "Hintergrundfarbe" +msgstr "Hintergrundfarbe:" #. uvmDA #: cui/uiconfig/ui/hatchpage.ui:372 @@ -15530,7 +15532,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 "Öffnet den Dialog „Benutzerdefiniertes Wörterbuch bearbeiten“, in dem Sie Ihrem benutzerdefinierten Wörterbuch Einträge hinzufügen oder vorhandene Einträge bearbeiten können." +msgstr "Öffnet den Dialog „Benutzerwörterbuch bearbeiten“, in dem Sie Ihrem benutzerdefinierten Wörterbuch Einträge hinzufügen oder vorhandene Einträge bearbeiten können." #. WCFD5 #: cui/uiconfig/ui/optlingupage.ui:356 @@ -15578,7 +15580,7 @@ #: cui/uiconfig/ui/optlingupage.ui:536 msgctxt "optlingupage|moredictslink" msgid "Get more dictionaries online..." -msgstr "Hier erhalten Sie online weitere Wörterbücher…" +msgstr "Hier erhalten Sie online weitere Wörterbücher" #. gardH #: cui/uiconfig/ui/optlingupage.ui:577 @@ -15812,7 +15814,7 @@ #: cui/uiconfig/ui/optopenclpage.ui:24 msgctxt "optopenclpage|useopencl" msgid "Allow use of OpenCL" -msgstr "Das Verwenden von OpenCL zulassen" +msgstr "Verwendung von OpenCL zulassen" #. MAc4P #: cui/uiconfig/ui/optopenclpage.ui:41 @@ -16058,7 +16060,7 @@ #: cui/uiconfig/ui/optsavepage.ui:111 msgctxt "optsavepage|autosave" msgid "Save _AutoRecovery information every:" -msgstr "S_peichern von Autowiederherstellungsinfos alle:" +msgstr "A_utowiederherstellungs-Informationen speichern alle:" #. 6L2Yh #: cui/uiconfig/ui/optsavepage.ui:119 @@ -16094,7 +16096,7 @@ #: cui/uiconfig/ui/optsavepage.ui:184 msgctxt "optsavepage|relative_fsys" msgid "Save URLs relative to file system" -msgstr "URLs relativ zum Dateisystem speichern" +msgstr "_URLs relativ zum Dateisystem speichern" #. jDKxF #: cui/uiconfig/ui/optsavepage.ui:192 @@ -16118,7 +16120,7 @@ #: cui/uiconfig/ui/optsavepage.ui:222 msgctxt "optsavepage|relative_inet" msgid "Save URLs relative to internet" -msgstr "URLs relativ zum Internet speichern" +msgstr "UR_Ls relativ zum Internet speichern" #. WYrQB #: cui/uiconfig/ui/optsavepage.ui:230 @@ -16148,7 +16150,7 @@ #: cui/uiconfig/ui/optsavepage.ui:293 msgctxt "optsavepage|warnalienformat" msgid "Warn when not saving in ODF or default format" -msgstr "Immer warnen, wenn nicht im ODF- oder Standardformat gespeichert wird" +msgstr "I_mmer warnen, wenn nicht im ODF- oder Standardformat gespeichert wird" #. zGBEu #: cui/uiconfig/ui/optsavepage.ui:301 @@ -16209,7 +16211,7 @@ #: cui/uiconfig/ui/optsavepage.ui:374 msgctxt "optsavepage|label5" msgid "ODF format version:" -msgstr "ODF-Formatversion:" +msgstr "O_DF-Formatversion:" #. bF5dA #: cui/uiconfig/ui/optsavepage.ui:388 @@ -17283,7 +17285,7 @@ #: cui/uiconfig/ui/optviewpage.ui:738 msgctxt "optviewpage|btn_rungptest" msgid "Run Graphics Tests" -msgstr "Grafiktests ausführen" +msgstr "Grafiktests ausführen…" #. 872fQ #: cui/uiconfig/ui/pageformatpage.ui:41 @@ -17789,7 +17791,7 @@ #: cui/uiconfig/ui/paraindentspacing.ui:397 msgctxt "paraindentspacing|labelFT_LINEDIST" msgid "of" -msgstr "von" +msgstr "von:" #. Bga6L #: cui/uiconfig/ui/paraindentspacing.ui:460 @@ -20128,7 +20130,7 @@ #: cui/uiconfig/ui/spellingdialog.ui:443 msgctxt "spellingdialog|change" msgid "Co_rrect" -msgstr "Än_dern" +msgstr "Korrigieren" #. m7FFp #: cui/uiconfig/ui/spellingdialog.ui:452 @@ -20140,7 +20142,7 @@ #: cui/uiconfig/ui/spellingdialog.ui:463 msgctxt "spellingdialog|changeall" msgid "Correct A_ll" -msgstr "A_lle ändern" +msgstr "A_lle korrigieren" #. 9kjPB #: cui/uiconfig/ui/spellingdialog.ui:472 @@ -20518,7 +20520,7 @@ #: cui/uiconfig/ui/swpossizepage.ui:577 msgctxt "swpossizepage|extended_tip|followtextflow" msgid "Keeps the selected object within the layout boundaries of the text that the object is anchored to. To place the selected object anywhere in your document, do not select this option." -msgstr "Hält das ausgewählte Objekt innerhalb der Layout-Grenzen des Textes, mit dem das Objekt verankert ist. Um das ausgewählte Objekt an einer beliebigen Stelle im Dokument zu platzieren, darf diese Option nicht ausgewählt sein." +msgstr "Hält das ausgewählte Objekt innerhalb der Layoutgrenzen des Textes, mit dem das Objekt verankert ist. Um das ausgewählte Objekt an einer beliebigen Stelle im Dokument zu platzieren, darf diese Option nicht ausgewählt sein." #. hKBGx #: cui/uiconfig/ui/swpossizepage.ui:593 @@ -20830,7 +20832,7 @@ #: cui/uiconfig/ui/textattrtabpage.ui:142 msgctxt "textattrtabpage|label1" msgid "Drawing Object Text" -msgstr "Zeichenobjekt Text" +msgstr "Text des Zeichnungsobjekts" #. E7JrK #: cui/uiconfig/ui/textattrtabpage.ui:172 @@ -20932,7 +20934,7 @@ #: cui/uiconfig/ui/textattrtabpage.ui:467 msgctxt "textattrtabpage|extended_tip|TSB_FULL_WIDTH" msgid "Anchors the text to the full width of the drawing object or text object." -msgstr "Verankert den Text an der gesamten Breite des Zeichnungs- oder Textobjektes." +msgstr "Verankert den Text in der gesamten Breite des Zeichnungs- oder Textobjekts." #. BP2Vk #: cui/uiconfig/ui/textattrtabpage.ui:483 @@ -21046,7 +21048,7 @@ #: cui/uiconfig/ui/textflowpage.ui:181 msgctxt "textflowpage|labelMaxNum" msgid "_Maximum consecutive hyphenated lines" -msgstr "_Maximal aufeinanderfolgende Zeilen mit Bindestrich" +msgstr "Ma_ximal aufeinanderfolgende Zeilen mit Bindestrich" #. GgHhP #: cui/uiconfig/ui/textflowpage.ui:192 @@ -21184,13 +21186,13 @@ #: cui/uiconfig/ui/textflowpage.ui:474 msgctxt "textflowpage|extended_tip|checkKeepPara" msgid "Keeps the current paragraph and the following paragraph together when a break or column break is inserted." -msgstr "Hält den aktuellen Absatz mit dem darauf folgenden Absatz zusammen, wenn ein Umbruch oder Spaltenwechsel eingefügt wird." +msgstr "Hält den aktuellen Absatz mit dem darauffolgenden Absatz zusammen, wenn ein Umbruch oder Spaltenwechsel eingefügt wird." #. dQZQ7 #: cui/uiconfig/ui/textflowpage.ui:486 msgctxt "textflowpage|checkOrphan" msgid "_Orphan control" -msgstr "Schuster_jungenregelung" +msgstr "_Schusterjungenregelung:" #. zADSo #: cui/uiconfig/ui/textflowpage.ui:498 @@ -21202,7 +21204,7 @@ #: cui/uiconfig/ui/textflowpage.ui:509 msgctxt "textflowpage|checkWidow" msgid "_Widow control" -msgstr "Hu_renkinderregelung" +msgstr "_Hurenkinderregelung:" #. SmFT5 #: cui/uiconfig/ui/textflowpage.ui:521 diff -Nru libreoffice-7.3.6/translations/source/de/desktop/messages.po libreoffice-7.3.7/translations/source/de/desktop/messages.po --- libreoffice-7.3.6/translations/source/de/desktop/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/desktop/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-07-15 17:24+0000\n" +"PO-Revision-Date: 2022-10-13 08:53+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -116,7 +116,7 @@ #: desktop/inc/strings.hrc:43 msgctxt "RID_STR_CANNOT_DETERMINE_LIBNAME" msgid "The library name could not be determined." -msgstr "Bibliotheks-Name konnte nicht ermittelt werden." +msgstr "Bibliotheksname konnte nicht ermittelt werden." #. G6SqW #: desktop/inc/strings.hrc:45 @@ -989,7 +989,7 @@ #: desktop/uiconfig/ui/extensionmanager.ui:346 msgctxt "extensionmanager|getextensions" msgid "Get more extensions online..." -msgstr "Laden Sie weitere Extensions aus dem Internet herunter…" +msgstr "Laden Sie weitere Extensions aus dem Internet herunter" #. FBvRd #: desktop/uiconfig/ui/extensionmanager.ui:354 diff -Nru libreoffice-7.3.6/translations/source/de/editeng/messages.po libreoffice-7.3.7/translations/source/de/editeng/messages.po --- libreoffice-7.3.6/translations/source/de/editeng/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/editeng/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-08-18 16:39+0000\n" +"PO-Revision-Date: 2022-10-27 08:33+0000\n" "Last-Translator: Annabelle Wübbelsmann \n" "Language-Team: German \n" "Language: de\n" @@ -1289,13 +1289,13 @@ #: include/editeng/editrids.hrc:228 msgctxt "RID_SVXITEMS_WIDOWS_COMPLETE" msgid "Widow control" -msgstr "Schusterjungenregelung" +msgstr "Hurenkinderregelung" #. 6aGAq #: include/editeng/editrids.hrc:229 msgctxt "RID_SVXITEMS_ORPHANS_COMPLETE" msgid "Orphan control" -msgstr "Hurenkinderregelung" +msgstr "Schusterjungenregelung" #. BEXDt #: include/editeng/editrids.hrc:230 @@ -1554,7 +1554,7 @@ #: include/editeng/editrids.hrc:273 msgctxt "RID_SVXITEMS_FRMDIR_ENVIRONMENT" msgid "Use superordinate object text direction setting" -msgstr "Textfluss-Einstellung des übergeordneten Objektes verwenden" +msgstr "Textfluss-Einstellung des übergeordneten Objekts verwenden" #. waJEN #: include/editeng/editrids.hrc:274 diff -Nru libreoffice-7.3.6/translations/source/de/extensions/messages.po libreoffice-7.3.7/translations/source/de/extensions/messages.po --- libreoffice-7.3.6/translations/source/de/extensions/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/extensions/messages.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2022-07-01 11:52+0200\n" -"PO-Revision-Date: 2022-07-01 09:59+0000\n" +"PO-Revision-Date: 2022-10-13 08:53+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -13,7 +13,7 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Accelerator-Marker: ~\n" -"X-Generator: LibreOffice\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1555474560.000000\n" #. cBx8W @@ -1363,7 +1363,7 @@ #: extensions/inc/strings.hrc:118 msgctxt "RID_STR_STRINGITEMLIST" msgid "List entries" -msgstr "Listen-Einträge" +msgstr "Listeneinträge" #. FNaAE #: extensions/inc/strings.hrc:119 diff -Nru libreoffice-7.3.6/translations/source/de/filter/messages.po libreoffice-7.3.7/translations/source/de/filter/messages.po --- libreoffice-7.3.6/translations/source/de/filter/messages.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/filter/messages.po 2022-10-27 10:11:14.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-08-18 16:39+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2022-10-13 08:53+0000\n" +"Last-Translator: Annabelle Wübbelsmann \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -616,7 +616,7 @@ #: filter/uiconfig/ui/pdfgeneralpage.ui:581 msgctxt "pdfgeneralpage|extended_tip|allowdups" msgid "Allows you to use the same field name for multiple fields in the generated PDF file. If disabled, field names will be exported using generated unique names." -msgstr "Erlaubt den Gebrauch des selben Feldname für mehrere Felder in der generierten PDF-Datei. Falls deaktiviert, werden Feldnamen mit generierten eindeutigen Namen exportiert." +msgstr "Erlaubt den Gebrauch desselben Feldnamen für mehrere Felder in der generierten PDF-Datei. Falls deaktiviert, werden Feldnamen mit generierten eindeutigen Namen exportiert." #. tkPCH #: filter/uiconfig/ui/pdfgeneralpage.ui:597 diff -Nru libreoffice-7.3.6/translations/source/de/filter/source/config/fragments/filters.po libreoffice-7.3.7/translations/source/de/filter/source/config/fragments/filters.po --- libreoffice-7.3.6/translations/source/de/filter/source/config/fragments/filters.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/filter/source/config/fragments/filters.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-27 06:38+0000\n" +"PO-Revision-Date: 2022-10-27 08: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: 1559618281.000000\n" #. FR4Ff @@ -34,7 +34,7 @@ "UIName\n" "value.text" msgid "AbiWord Document" -msgstr "AbiWord Dokument" +msgstr "AbiWord-Dokument" #. RBEgr #: AppleKeynote.xcu @@ -94,7 +94,7 @@ "UIName\n" "value.text" msgid "CGM - Computer Graphics Metafile" -msgstr "CGM – Computer Graphics Metafile" +msgstr "CGM – Computer Graphics-Metadatei" #. PEXwM #: ClarisWorks.xcu @@ -104,7 +104,7 @@ "UIName\n" "value.text" msgid "ClarisWorks/AppleWorks Text Document" -msgstr "ClarisWorks/AppleWorks Textdokument" +msgstr "ClarisWorks/AppleWorks-Textdokument" #. enPoE #: ClarisWorks_Calc.xcu @@ -114,7 +114,7 @@ "UIName\n" "value.text" msgid "ClarisWorks/AppleWorks Spreadsheet" -msgstr "ClarisWorks/AppleWorks Tabellendokument" +msgstr "ClarisWorks/AppleWorks-Tabellendokument" #. renzu #: ClarisWorks_Draw.xcu @@ -124,7 +124,7 @@ "UIName\n" "value.text" msgid "ClarisWorks/AppleWorks Drawing" -msgstr "ClarisWorks/AppleWorks Zeichnung" +msgstr "ClarisWorks/AppleWorks-Zeichnung" #. gz2o6 #: ClarisWorks_Impress.xcu @@ -134,7 +134,7 @@ "UIName\n" "value.text" msgid "ClarisWorks/AppleWorks Presentation" -msgstr "ClarisWorks/AppleWorks Präsentation" +msgstr "ClarisWorks/AppleWorks-Präsentation" #. JTAGb #: Claris_Resolve_Calc.xcu @@ -144,7 +144,7 @@ "UIName\n" "value.text" msgid "ClarisResolve Document" -msgstr "ClarisResolve Dokument" +msgstr "ClarisResolve-Dokument" #. AHyWG #: CorelDrawDocument.xcu @@ -174,7 +174,7 @@ "UIName\n" "value.text" msgid "Data Interchange Format" -msgstr "Data Interchange Format" +msgstr "Data Interchange-Format" #. NEKcH #: DXF___AutoCAD_Interchange.xcu @@ -184,7 +184,7 @@ "UIName\n" "value.text" msgid "DXF - AutoCAD Interchange Format" -msgstr "DXF – AutoCAD Interchange Format" +msgstr "DXF – AutoCAD Interchange-Format" #. ZyiCq #: DocBook_File.xcu @@ -214,7 +214,7 @@ "UIName\n" "value.text" msgid "EMF - Enhanced Metafile" -msgstr "EMF – Enhanced Metafile" +msgstr "EMF – Enhanced-Metadatei" #. eFNDy #: EPS___Encapsulated_PostScript.xcu @@ -254,7 +254,7 @@ "UIName\n" "value.text" msgid "Adobe/Macromedia Freehand" -msgstr "Adobe/Macromedia Freihand" +msgstr "Adobe/Macromedia-Freihand" #. iSFBM #: GIF___Graphics_Interchange.xcu @@ -334,7 +334,7 @@ "UIName\n" "value.text" msgid "Lotus WordPro Document" -msgstr "Lotus WordPro Dokument" +msgstr "Lotus WordPro-Dokument" #. QWbhv #: MET___OS_2_Metafile.xcu @@ -344,7 +344,7 @@ "UIName\n" "value.text" msgid "MET - OS/2 Metafile" -msgstr "MET – OS/2 Metafile" +msgstr "MET – OS/2-Metadatei" #. oADQU #: MS_Excel_2003_XML.xcu @@ -384,7 +384,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 4.0 Template" -msgstr "Microsoft Excel 4.0 Dokumentvorlage" +msgstr "Microsoft Excel 4.0-Dokumentvorlage" #. eHaUs #: MS_Excel_5_0_95.xcu @@ -404,7 +404,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 5.0 Template" -msgstr "Microsoft Excel 5.0 Dokumentvorlage" +msgstr "Microsoft Excel 5.0-Dokumentvorlage" #. DuC6b #: MS_Excel_95.xcu @@ -424,7 +424,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 95 Template" -msgstr "Microsoft Excel 95 Dokumentvorlage" +msgstr "Microsoft Excel 95-Dokumentvorlage" #. 6Azy5 #: MS_Excel_97.xcu @@ -444,7 +444,7 @@ "UIName\n" "value.text" msgid "Excel 97–2003 Template" -msgstr "Excel 97–2003 Dokumentvorlage" +msgstr "Excel 97–2003-Dokumentvorlage" #. yBQCh #: MS_Multiplan.xcu @@ -474,7 +474,7 @@ "UIName\n" "value.text" msgid "PowerPoint 97–2003 AutoPlay" -msgstr "PowerPoint 97–2003 AutoStart" +msgstr "PowerPoint 97–2003-AutoStart" #. w6jpN #: MS_PowerPoint_97_Vorlage.xcu @@ -484,7 +484,7 @@ "UIName\n" "value.text" msgid "PowerPoint 97–2003 Template" -msgstr "PowerPoint 97–2003 Dokumentvorlage" +msgstr "PowerPoint 97–2003-Dokumentvorlage" #. FBCpY #: MS_WinWord_5.xcu @@ -534,7 +534,7 @@ "UIName\n" "value.text" msgid "Word 2007–365 Template" -msgstr "Word 2007–365 Dokumentvorlage" +msgstr "Word 2007–365-Dokumentvorlage" #. ja9Xs #: MS_Word_2007_XML_VBA.xcu @@ -564,7 +564,7 @@ "UIName\n" "value.text" msgid "Microsoft Word 95 Template" -msgstr "Microsoft Word 95 Dokumentvorlage" +msgstr "Microsoft Word 95-Dokumentvorlage" #. cii3o #: MS_Word_97.xcu @@ -584,7 +584,7 @@ "UIName\n" "value.text" msgid "Word 97–2003 Template" -msgstr "Word 97–2003 Dokumentvorlage" +msgstr "Word 97–2003-Dokumentvorlage" #. GnuAC #: MS_Works.xcu @@ -594,7 +594,7 @@ "UIName\n" "value.text" msgid "Microsoft Works Document" -msgstr "Microsoft Works Dokument" +msgstr "Microsoft Works-Dokument" #. fZYpn #: MS_Works_Calc.xcu @@ -604,7 +604,7 @@ "UIName\n" "value.text" msgid "Microsoft Works Document" -msgstr "Microsoft Works Dokument" +msgstr "Microsoft Works-Dokument" #. G3mSJ #: MS_Write.xcu @@ -624,7 +624,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Bitmap" -msgstr "Veraltete Mac Bitmap" +msgstr "Veraltete Mac-Bitmap" #. txqv8 #: MWAW_Database.xcu @@ -634,7 +634,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Database" -msgstr "Veraltete Mac Datenbank" +msgstr "Veraltete Mac-Datenbank" #. WBq6L #: MWAW_Drawing.xcu @@ -644,7 +644,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Drawing" -msgstr "Veraltete Mac Zeichnung" +msgstr "Veraltete Mac-Zeichnung" #. YeAy9 #: MWAW_Presentation.xcu @@ -654,7 +654,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Presentation" -msgstr "Veraltete Mac Präsentation" +msgstr "Veraltete Mac-Präsentation" #. 3WycC #: MWAW_Spreadsheet.xcu @@ -664,7 +664,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Spreadsheet" -msgstr "Veraltetes Mac Tabellendokument" +msgstr "Veraltetes Mac-Tabellendokument" #. qBeco #: MWAW_Text_Document.xcu @@ -674,7 +674,7 @@ "UIName\n" "value.text" msgid "Legacy Mac Text Document" -msgstr "Veraltetes Mac Textdokument" +msgstr "Veraltetes Mac-Textdokument" #. ZUJ6t #: MacWrite.xcu @@ -684,7 +684,7 @@ "UIName\n" "value.text" msgid "MacWrite Document" -msgstr "MacWrite Dokument" +msgstr "MacWrite-Dokument" #. FLgfD #: Mac_Word.xcu @@ -714,7 +714,7 @@ "UIName\n" "value.text" msgid "Microsoft Works for Mac Spreadsheet (v1 - v4)" -msgstr "Microsoft Works für Mac (V. 1 – V. 4) Tabellendokument" +msgstr "Microsoft Works für Mac-Tabellendokument (V. 1 – V. 4)" #. LqFFg #: Mariner_Write.xcu @@ -804,7 +804,7 @@ "UIName\n" "value.text" msgid "Office Open XML Text Template (Transitional)" -msgstr "Office Open XML Text Dokumentvorlage (Transitional)" +msgstr "Office Open XML Text-Dokumentvorlage (Transitional)" #. B4Xqe #: PBM___Portable_Bitmap.xcu @@ -904,7 +904,7 @@ "UIName\n" "value.text" msgid "Palm Text Document" -msgstr "Palm Textdokument" +msgstr "Palm-Textdokument" #. zUHDY #: Plucker_eBook.xcu @@ -994,7 +994,7 @@ "UIName\n" "value.text" msgid "SVG - Scalable Vector Graphics" -msgstr "SVG – Scalable Vector Graphics" +msgstr "SVG – Skalierbare Vektorgrafiken" #. MwrSz #: SVG___Scalable_Vector_Graphics_Draw.xcu @@ -1004,7 +1004,7 @@ "UIName\n" "value.text" msgid "SVG - Scalable Vector Graphics Draw" -msgstr "SVG – Scalable Vector Graphics Draw" +msgstr "SVG – Skalierbare Vektorgrafiken Draw" #. VjB4m #: SVM___StarView_Metafile.xcu @@ -1014,7 +1014,7 @@ "UIName\n" "value.text" msgid "SVM - StarView Metafile" -msgstr "SVM – StarView Metafile" +msgstr "SVM – StarView-Metadatei" #. GGFv2 #: SYLK.xcu @@ -1044,7 +1044,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Report Chart" -msgstr "OpenOffice.org 1.0 Berichtsdiagramm" +msgstr "OpenOffice.org 1.0-Berichtsdiagramm" #. a9ZBj #: StarOffice_Drawing.xcu @@ -1054,7 +1054,7 @@ "UIName\n" "value.text" msgid "Legacy StarOffice Drawing" -msgstr "Veraltete StarOffice Zeichnung" +msgstr "Veraltete StarOffice-Zeichnung" #. AA8DU #: StarOffice_Presentation.xcu @@ -1074,7 +1074,7 @@ "UIName\n" "value.text" msgid "Legacy StarOffice Spreadsheet" -msgstr "Veraltetes StarOffice Tabellendokument" +msgstr "Veraltetes StarOffice-Tabellendokument" #. eLzL6 #: StarOffice_Writer.xcu @@ -1084,7 +1084,7 @@ "UIName\n" "value.text" msgid "Legacy StarOffice Text Document" -msgstr "Veraltetes StarOffice Textdokument" +msgstr "Veraltetes StarOffice-Textdokument" #. GitUg #: StarOffice_XML__Base_.xcu @@ -1104,7 +1104,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Spreadsheet" -msgstr "OpenOffice.org 1.0 Tabellendokument" +msgstr "OpenOffice.org 1.0-Tabellendokument" #. ybPJp #: StarOffice_XML__Chart_.xcu @@ -1114,7 +1114,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Chart" -msgstr "OpenOffice.org 1.0 Diagramm" +msgstr "OpenOffice.org 1.0-Diagramm" #. wnAXQ #: StarOffice_XML__Draw_.xcu @@ -1124,7 +1124,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Drawing" -msgstr "OpenOffice.org 1.0 Zeichnung" +msgstr "OpenOffice.org 1.0-Zeichnung" #. rGSr3 #: StarOffice_XML__Impress_.xcu @@ -1134,7 +1134,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Presentation" -msgstr "OpenOffice.org 1.0 Präsentation" +msgstr "OpenOffice.org 1.0-Präsentation" #. QCoxC #: StarOffice_XML__Math_.xcu @@ -1144,7 +1144,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Formula" -msgstr "OpenOffice.org 1.0 Formel" +msgstr "OpenOffice.org 1.0-Formel" #. 4Lr4M #: StarOffice_XML__Writer_.xcu @@ -1154,7 +1154,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Text Document" -msgstr "OpenOffice.org 1.0 Textdokument" +msgstr "OpenOffice.org 1.0-Textdokument" #. WDxtc #: T602Document.xcu @@ -1254,7 +1254,7 @@ "UIName\n" "value.text" msgid "Unified Office Format presentation" -msgstr "Unified Office Format Präsentation" +msgstr "Unified Office Format-Präsentation" #. bHwEV #: UOF_spreadsheet.xcu @@ -1264,7 +1264,7 @@ "UIName\n" "value.text" msgid "Unified Office Format spreadsheet" -msgstr "Unified Office Format Tabellendokument" +msgstr "Unified Office Format-Tabellendokument" #. 4Dx6G #: UOF_text.xcu @@ -1274,7 +1274,7 @@ "UIName\n" "value.text" msgid "Unified Office Format text" -msgstr "Unified Office Format Textdokument" +msgstr "Unified Office Format-Textdokument" #. ELGBU #: VisioDocument.xcu @@ -1294,7 +1294,7 @@ "UIName\n" "value.text" msgid "WMF - Windows Metafile" -msgstr "WMF – Windows Metafile" +msgstr "WMF – Windows-Metadatei" #. G6mAM #: WPS_Lotus_Calc.xcu @@ -1304,7 +1304,7 @@ "UIName\n" "value.text" msgid "Lotus Document" -msgstr "Lotus Dokument" +msgstr "Lotus-Dokument" #. aWnQ9 #: WPS_QPro_Calc.xcu @@ -1314,7 +1314,7 @@ "UIName\n" "value.text" msgid "QuattroPro Document" -msgstr "QuattroPro Dokument" +msgstr "QuattroPro-Dokument" #. 98S59 #: WordPerfect.xcu @@ -1324,7 +1324,7 @@ "UIName\n" "value.text" msgid "WordPerfect Document" -msgstr "WordPerfect Dokument" +msgstr "WordPerfect-Dokument" #. CsfBF #: WordPerfectGraphics.xcu @@ -1334,7 +1334,7 @@ "UIName\n" "value.text" msgid "WordPerfect Graphics" -msgstr "WordPerfect Grafik" +msgstr "WordPerfect-Grafik" #. cuZzS #: WriteNow.xcu @@ -1344,7 +1344,7 @@ "UIName\n" "value.text" msgid "WriteNow Document" -msgstr "WriteNow Dokument" +msgstr "WriteNow-Dokument" #. rG4od #: XBM___X_Consortium.xcu @@ -1354,7 +1354,7 @@ "UIName\n" "value.text" msgid "XBM - X Bitmap" -msgstr "XBM – X Bitmap" +msgstr "XBM – X-Bitmap" #. FAABE #: XPM.xcu @@ -1364,7 +1364,7 @@ "UIName\n" "value.text" msgid "XPM - X PixMap" -msgstr "XPM – X PixMap" +msgstr "XPM – X-PixMap" #. ERRyu #: ZMFDocument.xcu @@ -1374,7 +1374,7 @@ "UIName\n" "value.text" msgid "Zoner Callisto/Draw" -msgstr "Zoner Callisto Zeichnung" +msgstr "Zoner Callisto-Zeichnung" #. 5CaBn #: calc8.xcu @@ -1394,7 +1394,7 @@ "UIName\n" "value.text" msgid "ODF Spreadsheet Template" -msgstr "ODF Tabellendokument Dokumentvorlage" +msgstr "ODF-Tabellendokumentvorlage" #. 2JxAC #: calc_Gnumeric.xcu @@ -1404,7 +1404,7 @@ "UIName\n" "value.text" msgid "Gnumeric Spreadsheet" -msgstr "Gnumeric Tabellendokument" +msgstr "Gnumeric-Tabellendokument" #. HWKsT #: calc_HTML_WebQuery.xcu @@ -1424,7 +1424,7 @@ "UIName\n" "value.text" msgid "Microsoft Excel 2007 Binary" -msgstr "Microsoft Excel 2007 Binär Dokument" +msgstr "Microsoft Excel 2007 Binär-Dokument" #. Vpueh #: calc_MS_Excel_2007_VBA_XML.xcu @@ -1454,7 +1454,7 @@ "UIName\n" "value.text" msgid "Excel 2007–365 Template" -msgstr "Excel 2007–365 Dokumentvorlage" +msgstr "Excel 2007–365-Dokumentvorlage" #. 6V2uj #: calc_OOXML.xcu @@ -1464,7 +1464,7 @@ "UIName\n" "value.text" msgid "Office Open XML Spreadsheet" -msgstr "Office Open XML Tabellendokument" +msgstr "Office Open XML-Tabellendokument" #. v7Cqc #: calc_OOXML_Template.xcu @@ -1474,7 +1474,7 @@ "UIName\n" "value.text" msgid "Office Open XML Spreadsheet Template" -msgstr "Office Open XML Tabellendokument Dokumentvorlage" +msgstr "Office Open XML-Tabellendokumentvorlage" #. QuUM5 #: calc_StarOffice_XML_Calc_Template.xcu @@ -1484,7 +1484,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Spreadsheet Template" -msgstr "OpenOffice.org 1.0 Tabellendokument Dokumentvorlage" +msgstr "OpenOffice.org 1.0-Tabellendokumentvorlage" #. 5qdNy #: calc_jpg_Export.xcu @@ -1504,7 +1504,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "PDF – Portable Document Format" +msgstr "PDF – Portable Document-Format" #. idstQ #: calc_png_Export.xcu @@ -1564,7 +1564,7 @@ "UIName\n" "value.text" msgid "ODF Drawing Template" -msgstr "ODF Zeichnung Dokumentvorlage" +msgstr "ODF-Zeichnungsvorlage" #. C8ABS #: draw_PCD_Photo_CD_Base.xcu @@ -1604,7 +1604,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Drawing Template" -msgstr "OpenOffice.org 1.0 Zeichnung Dokumentvorlage" +msgstr "OpenOffice.org 1.0-Zeichnungsvorlage" #. m4Wdq #: draw_bmp_Export.xcu @@ -1624,7 +1624,7 @@ "UIName\n" "value.text" msgid "EMF - Enhanced Metafile" -msgstr "EMF – Enhanced Metafile" +msgstr "EMF – Enhanced-Metadatei" #. Vx93E #: draw_eps_Export.xcu @@ -1674,7 +1674,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "PDF – Portable Document Format" +msgstr "PDF – Portable Document-Format" #. AGsrX #: draw_png_Export.xcu @@ -1694,7 +1694,7 @@ "UIName\n" "value.text" msgid "SVG - Scalable Vector Graphics" -msgstr "SVG – Scalable Vector Graphics" +msgstr "SVG – Skalierbare Vektorgrafiken" #. GsbKe #: draw_tif_Export.xcu @@ -1704,7 +1704,7 @@ "UIName\n" "value.text" msgid "TIFF - Tagged Image File Format" -msgstr "TIFF – Tagged Image File Format" +msgstr "TIFF – Tagged Image File-Format" #. RgBSz #: draw_wmf_Export.xcu @@ -1714,7 +1714,7 @@ "UIName\n" "value.text" msgid "WMF - Windows Metafile" -msgstr "WMF – Windows Metafile" +msgstr "WMF – Windows-Metadatei" #. 3fXiG #: impress8.xcu @@ -1744,7 +1744,7 @@ "UIName\n" "value.text" msgid "ODF Presentation Template" -msgstr "ODF Präsentation Dokumentvorlage" +msgstr "ODF-Präsentationsvorlage" #. 9J7a2 #: impress_MS_PowerPoint_2007_XML.xcu @@ -1774,7 +1774,7 @@ "UIName\n" "value.text" msgid "PowerPoint 2007–365 Template" -msgstr "PowerPoint 2007–365 Dokumentvorlage" +msgstr "PowerPoint 2007–365-Dokumentvorlage" #. PAsvD #: impress_MS_PowerPoint_2007_XML_VBA.xcu @@ -1794,7 +1794,7 @@ "UIName\n" "value.text" msgid "Office Open XML Presentation" -msgstr "Office Open XML Präsentation" +msgstr "Office Open XML-Präsentation" #. zRPFk #: impress_OOXML_AutoPlay.xcu @@ -1804,7 +1804,7 @@ "UIName\n" "value.text" msgid "Office Open XML Presentation AutoPlay" -msgstr "Office Open XML Präsentation AutoPlay" +msgstr "Office Open XML-Präsentation AutoPlay" #. vcvUA #: impress_OOXML_Template.xcu @@ -1814,7 +1814,7 @@ "UIName\n" "value.text" msgid "Office Open XML Presentation Template" -msgstr "Office Open XML Präsentation Dokumentvorlage" +msgstr "Office Open XML-Präsentationsvorlage" #. KDAFg #: impress_StarOffice_XML_Draw.xcu @@ -1824,7 +1824,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Drawing (Impress)" -msgstr "OpenOffice.org 1.0 Zeichnung (Impress)" +msgstr "OpenOffice.org 1.0-Zeichnung (Impress)" #. oviUa #: impress_StarOffice_XML_Impress_Template.xcu @@ -1834,7 +1834,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Presentation Template" -msgstr "OpenOffice.org 1.0 Präsentation Dokumentvorlage" +msgstr "OpenOffice.org 1.0-Präsentationsvorlage" #. ptcbj #: impress_bmp_Export.xcu @@ -1854,7 +1854,7 @@ "UIName\n" "value.text" msgid "EMF - Enhanced Metafile" -msgstr "EMF – Enhanced Metafile" +msgstr "EMF – Enhanced-Metadatei" #. GJfwp #: impress_eps_Export.xcu @@ -1874,7 +1874,7 @@ "UIName\n" "value.text" msgid "GIF - Graphics Interchange Format" -msgstr "GIF – Graphics Interchange Format" +msgstr "GIF – Graphics Interchange-Format" #. MFbfq #: impress_html_Export.xcu @@ -1904,7 +1904,7 @@ "UIName\n" "value.text" msgid "PDF - Portable Document Format" -msgstr "PDF – Portable Document Format" +msgstr "PDF – Portable Document-Format" #. QzDEJ #: impress_png_Export.xcu @@ -1924,7 +1924,7 @@ "UIName\n" "value.text" msgid "SVG - Scalable Vector Graphics" -msgstr "SVG – Scalable Vector Graphics" +msgstr "SVG – Skalierbare Vektorgrafiken" #. XfPEz #: impress_tif_Export.xcu @@ -1934,7 +1934,7 @@ "UIName\n" "value.text" msgid "TIFF - Tagged Image File Format" -msgstr "TIFF – Tagged Image File Format" +msgstr "TIFF – Tagged Image File-Format" #. 3yHCC #: impress_wmf_Export.xcu @@ -1944,7 +1944,7 @@ "UIName\n" "value.text" msgid "WMF - Windows Metafile" -msgstr "WMF – Windows Metafile" +msgstr "WMF – Windows-Metadatei" #. DnL3A #: math8.xcu @@ -1974,7 +1974,7 @@ "UIName\n" "value.text" msgid "MOV - QuickTime File Format" -msgstr "MOV – QuickTime Dateiformat" +msgstr "MOV – QuickTime-Dateiformat" #. Ktckf #: writer8.xcu @@ -1994,7 +1994,7 @@ "UIName\n" "value.text" msgid "ODF Text Document Template" -msgstr "ODF Textdokument Dokumentvorlage" +msgstr "ODF-Textdokumentvorlage" #. FEMM8 #: writer_MIZI_Hwp_97.xcu @@ -2014,7 +2014,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Text Document Template" -msgstr "OpenOffice.org 1.0 Textdokument Dokumentvorlage" +msgstr "OpenOffice.org 1.0-Textdokumentvorlage" #. vu9L5 #: writer_globaldocument_StarOffice_XML_Writer.xcu @@ -2024,7 +2024,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Text Document" -msgstr "OpenOffice.org 1.0 Textdokument" +msgstr "OpenOffice.org 1.0-Textdokument" #. ngztG #: writer_globaldocument_StarOffice_XML_Writer_GlobalDocument.xcu @@ -2034,7 +2034,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Master Document" -msgstr "OpenOffice.org 1.0 Globaldokument" +msgstr "OpenOffice.org 1.0-Globaldokument" #. AnZbG #: writer_globaldocument_pdf_Export.xcu @@ -2054,7 +2054,7 @@ "UIName\n" "value.text" msgid "Writer Indexing Export XML" -msgstr "Writer Indizierungsexport XML" +msgstr "Writer-Indizierungsexport XML" #. C4PGD #: writer_jpg_Export.xcu @@ -2074,7 +2074,7 @@ "UIName\n" "value.text" msgid "Writer Layout XML" -msgstr "Writer Layout XML" +msgstr "Writer-Layout XML" #. wADhK #: writer_pdf_Export.xcu @@ -2124,7 +2124,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 Text Document (Writer/Web)" -msgstr "OpenOffice.org 1.0 Textdokument (Writer/Webseite)" +msgstr "OpenOffice.org 1.0-Textdokument (Writer/Webseite)" #. kp5x8 #: writer_web_StarOffice_XML_Writer_Web_Template.xcu @@ -2134,7 +2134,7 @@ "UIName\n" "value.text" msgid "OpenOffice.org 1.0 HTML Template" -msgstr "OpenOffice.org 1.0 HTML Dokumentvorlage" +msgstr "OpenOffice.org 1.0 HTML-Dokumentvorlage" #. DQZCK #: writer_web_jpg_Export.xcu @@ -2194,7 +2194,7 @@ "UIName\n" "value.text" msgid "ODF Master Document Template" -msgstr "ODF Globaldokument Dokumentvorlage" +msgstr "ODF-Globaldokumentvorlage" #. RbTUd #: writerglobal8_writer.xcu @@ -2224,4 +2224,4 @@ "UIName\n" "value.text" msgid "HTML Document Template" -msgstr "HTML-Dokument Dokumentvorlage" +msgstr "HTML-Dokumentvorlage" diff -Nru libreoffice-7.3.6/translations/source/de/filter/source/config/fragments/internalgraphicfilters.po libreoffice-7.3.7/translations/source/de/filter/source/config/fragments/internalgraphicfilters.po --- libreoffice-7.3.6/translations/source/de/filter/source/config/fragments/internalgraphicfilters.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/filter/source/config/fragments/internalgraphicfilters.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-27 06:38+0000\n" +"PO-Revision-Date: 2022-10-27 08: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: 1479272478.000000\n" #. s5fY3 @@ -44,7 +44,7 @@ "UIName\n" "value.text" msgid "DXF - AutoCAD Interchange Format" -msgstr "DXF - AutoCAD Interchange-Format" +msgstr "DXF – AutoCAD Interchange-Format" #. qGZFH #: emf_Export.xcu @@ -54,7 +54,7 @@ "UIName\n" "value.text" msgid "EMF - Enhanced Metafile" -msgstr "EMF - Enhanced Metadatei" +msgstr "EMF – Enhanced Metadatei" #. oBuvn #: emf_Import.xcu @@ -64,7 +64,7 @@ "UIName\n" "value.text" msgid "EMF - Enhanced Metafile" -msgstr "EMF - Enhanced Metadatei" +msgstr "EMF – Enhanced Metadatei" #. zAAmY #: eps_Export.xcu @@ -74,7 +74,7 @@ "UIName\n" "value.text" msgid "EPS - Encapsulated PostScript" -msgstr "EPS - Encapsulated PostScript" +msgstr "EPS – Encapsulated PostScript" #. 5FiGM #: eps_Import.xcu @@ -294,7 +294,7 @@ "UIName\n" "value.text" msgid "SVG - Scalable Vector Graphics" -msgstr "SVG – Scalable Vector Graphics" +msgstr "SVG – Skalierbare Vektorgrafiken" #. DFeqX #: svg_Import.xcu diff -Nru libreoffice-7.3.6/translations/source/de/helpcontent2/source/auxiliary.po libreoffice-7.3.7/translations/source/de/helpcontent2/source/auxiliary.po --- libreoffice-7.3.6/translations/source/de/helpcontent2/source/auxiliary.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/helpcontent2/source/auxiliary.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-12-13 06:38+0000\n" -"Last-Translator: Ettore Atalan \n" -"Language-Team: German \n" +"PO-Revision-Date: 2022-10-27 08:40+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: 1562560629.000000\n" #. fEEXD @@ -482,7 +482,7 @@ "01\n" "help_section.text" msgid "%PRODUCTNAME Installation" -msgstr "%PRODUCTNAME Installation" +msgstr "%PRODUCTNAME-Installation" #. 3EUAC #: shared.tree @@ -518,7 +518,7 @@ "1004\n" "node.text" msgid "%PRODUCTNAME Options" -msgstr "%PRODUCTNAME Optionen" +msgstr "%PRODUCTNAME-Optionen" #. d4gAD #: shared.tree @@ -698,7 +698,7 @@ "1020\n" "node.text" msgid "Searching and Replacing" -msgstr "Suchen und Ersetzen" +msgstr "Suchen und ersetzen" #. 4GGhC #: shared.tree @@ -1094,7 +1094,7 @@ "0223\n" "node.text" msgid "Searching and Replacing" -msgstr "Suchen und Ersetzen" +msgstr "Suchen und ersetzen" #. CYQr2 #: swriter.tree diff -Nru libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/sbasic/guide.po libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/sbasic/guide.po --- libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/sbasic/guide.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/sbasic/guide.po 2022-10-27 10:11:14.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-08-31 14:00+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2022-10-13 10:18+0000\n" +"Last-Translator: Annabelle Wübbelsmann \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -878,7 +878,7 @@ "par_id261630541889040\n" "help.text" msgid "The Python code presented above uses the ScriptForge library that is available since %PRODUCTNAME 7.2." -msgstr "Der oben vorgestellte Python-Code verwendet die Bibliothek ScriptForge, welche seit %PRODUCTNAME 7.2 verfügbar ist." +msgstr "Der oben vorgestellte Python-Code verwendet die Bibliothek ScriptForge, die seit %PRODUCTNAME 7.2 verfügbar ist." #. FfECT #: calc_borders.xhp @@ -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 "Bereichsobjekte haben eine Eigenschaft namens TableBorder2, welche zum Formatieren der Bereichsumrandungen verwendet werden kann, genauso wie Sie sie im Dialog Format – Zellen… – Register: Umrandungen im Bereich Linienanordnung formatieren können." +msgstr "Bereichsobjekte haben eine Eigenschaft namens TableBorder2, die zum Formatieren der Bereichsumrandungen verwendet werden kann, genauso wie Sie sie im Dialog Format – Zellen… – Register: Umrandungen im Bereich Linienanordnung formatieren können." #. A25aA #: calc_borders.xhp @@ -1355,7 +1355,7 @@ "hd_id411633215666257\n" "help.text" msgid "Values, Strings and Formulas" -msgstr "Werte, Zeichenfolgen und Formulare" +msgstr "Werte, Zeichenfolgen und Formeln" #. MBHDg #: read_write_values.xhp @@ -1472,7 +1472,7 @@ "par_id291633264880172\n" "help.text" msgid "In Basic, instead of using the getByName method, use Sheets(sheetIndex) as shown next:" -msgstr "Verwenden Sie in Basic anstelle der Methode getByName die Methode Sheets(sheetIndex) wie unten gezeigt:" +msgstr "In Basic verwenden Sie anstelle der Methode getByName die Methode Sheets(sheetIndex), wie unten gezeigt:" #. svDuj #: read_write_values.xhp diff -Nru libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/sbasic/python.po libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/sbasic/python.po --- libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/sbasic/python.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/sbasic/python.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-07-15 17:33+0000\n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -518,7 +518,7 @@ "par_id461630582396782\n" "help.text" msgid "Control the processing of document save, document copy, print or mailmerge requests." -msgstr "" +msgstr "Steuern Sie die Verarbeitung von Dokumentenspeicher-, Dokumentkopier-, Druck- oder Seriendruckanforderungen." #. xrRHB #: python_document_events.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 "" +msgstr "Die Überwachung wird für Basic- und Python-Sprachen unter Verwendung objektorientierter Programmierung veranschaulicht. Das Zuweisen des Skripts OnLoad zum Ereignis Open Document reicht aus, um die Dokumentereignis-Überwachung zu beginnen und zu beenden. Wählen Sie Extras – Anpassen… Register: Ereignisse, um Skripte zuzuweisen." #. KgWvt #: python_document_events.xhp @@ -608,7 +608,7 @@ "N0534\n" "help.text" msgid "OnLoad and OnUnload events can be used to respectively set and unset Python programs path. They are described as Open document and Document closed." -msgstr "" +msgstr "Die Ereignisse OnLoad und OnUnload können verwendet werden, um den Python-Programmpfad festzulegen beziehungsweise aufzuheben. Sie werden als Dokument öffnen und Dokument geschlossen bezeichnet." #. i7waD #: python_document_events.xhp @@ -779,7 +779,7 @@ "N0602\n" "help.text" msgid "listener = UiDocument() # Initiates listening" -msgstr "" +msgstr "listener = UiDocument() # Beginnt die Überwachung" #. CkJg4 #: python_document_events.xhp @@ -851,7 +851,7 @@ "N0638\n" "help.text" msgid "''' Grab application-based Basic script '''" -msgstr "" +msgstr "''' Anwendungsbasiertes Basic-Skript abrufen '''" #. 2dfeg #: 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 "" +msgstr "Mit den Ereignissen Anwendung starten und Anwendung schließen können Sie den Python-Pfad für Benutzerskripte oder %PRODUCTNAME-Skripte festlegen und deaktivieren. In ähnlicher Weise können dokumentbasierte Python-Bibliotheken oder -Module mit den Ereignissen Dokument öffnen und Dokument geschlossen geladen und freigegeben werden. Weitere Informationen finden Sie unter Importieren von Python-Modulen." #. 8pHCg #: 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 "Bei der Verwendung des Menüs Extras – Anpassen… – Register: Ereignisse startet das Ereignis Dokument öffnen die Initialisierung von ConsoleLogger. Die Routine _documentEventOccured – festgelegt von ConsoleLogger – dient als eindeutiger Einstiegspunkt, um alle Dokumentereignisse abzufangen." #. gGpkW #: python_document_events.xhp @@ -905,7 +905,7 @@ "hd_id421630510141729\n" "help.text" msgid "controller.Events module" -msgstr "" +msgstr "Modul controller.Events" #. rJX92 #: python_document_events.xhp @@ -914,7 +914,7 @@ "bas_id431630567378062\n" "help.text" msgid "Global _obj As Object ' controller.ConsoleLogger instance" -msgstr "" +msgstr "Global _obj As Object ' Instanz controller.ConsoleLogger" #. PfRq6 #: python_document_events.xhp @@ -932,7 +932,7 @@ "bas_id371630509596674\n" "help.text" msgid "''' ConsoleLogger unique entry point '''" -msgstr "" +msgstr "''' Eindeutiger Einstiegspunkt für ConsoleLogger '''" #. upGWH #: python_document_events.xhp @@ -941,7 +941,7 @@ "hd_id721630511986813\n" "help.text" msgid "controller.ConsoleLogger class module" -msgstr "" +msgstr "Klassenmodul controller.ConsoleLogger" #. AN8tn #: python_document_events.xhp @@ -950,7 +950,7 @@ "par_id901630509435225\n" "help.text" msgid "Events monitoring starts from the moment a ConsoleLogger object is instantiated and ultimately stops upon document closure. StartAdapter routine loads necessary Basic libraries, while caught events are reported using Access2Base.Trace module." -msgstr "" +msgstr "Die Überwachung von Ereignissen beginnt in dem Moment, in dem ein Objekt ConsoleLogger erzeugt wird, und endet schließlich mit dem Schließen des Dokuments. Die Routine StartAdapter lädt die benötigten Basic-Bibliotheken, während abgefangene Ereignisse mithilfe des Moduls Access2Base.Trace angezeigt werden." #. 2jXHB #: python_document_events.xhp @@ -968,7 +968,7 @@ "N0666\n" "help.text" msgid "Private Const UI_NOPROMPT = False ' Set it to True to visualise documents events" -msgstr "" +msgstr "Private Const UI_NOPROMPT = False ' Legen Sie es auf \"True\" fest, um Dokumentereignisse anzuzeigen" #. EQG8C #: python_document_events.xhp @@ -986,7 +986,7 @@ "bas_id131630510956418\n" "help.text" msgid "Private _txtMsg As String ' text message to log in console" -msgstr "" +msgstr "Private _txtMsg As String ' Textnachricht zum Aufzeichnen in der Konsole" #. JaEhY #: python_document_events.xhp @@ -995,7 +995,7 @@ "N0677\n" "help.text" msgid "' PROPERTIES" -msgstr "" +msgstr "' EIGENSCHAFTEN" #. aGuEg #: python_document_events.xhp @@ -1040,7 +1040,7 @@ "N0705\n" "help.text" msgid "Access2Base.Trace.TraceLog(\"INFO\", _txtMsg & \"Document events are being logged\", UI_PROMPT)" -msgstr "" +msgstr "Access2Base.Trace.TraceLog(\"INFO\", _txtMsg & \"Dokumentereignisse werden aufgezeichnet\", UI_PROMPT)" #. NkHa4 #: python_document_events.xhp @@ -1058,7 +1058,7 @@ "N0717\n" "help.text" msgid "Access2Base.Trace.TraceLog(\"INFO\", _txtMsg & \"Document events have been logged\", UI_PROMPT)" -msgstr "" +msgstr "Access2Base.Trace.TraceLog(\"INFO\", _txtMsg & \"Dokumentereignisse wurden aufgezeichnet\", UI_PROMPT)" #. GAD2E #: python_document_events.xhp @@ -1067,7 +1067,7 @@ "N0719\n" "help.text" msgid "Access2Base.Trace.TraceConsole() ' Captured events dialog" -msgstr "" +msgstr "Access2Base.Trace.TraceConsole() ' Dialog für aufgezeichnete Ereignisse" #. X8Kdh #: python_document_events.xhp @@ -1076,7 +1076,7 @@ "N0722\n" "help.text" msgid "' EVENTS" -msgstr "" +msgstr "' EREIGNISSE" #. uVpJf #: python_document_events.xhp @@ -2174,7 +2174,7 @@ "par_id481636114810038\n" "help.text" msgid "%PRODUCTNAME macros are grouped in module files, modules are usually grouped in library folders, and libraries are grouped in library containers although containers can contain modules too." -msgstr "" +msgstr "%PRODUCTNAME-Makros werden in Moduldateien gruppiert, Module werden normalerweise in Bibliotheksordnern gruppiert, und Bibliotheken werden in Bibliothekscontainern gruppiert, die sowohl Container als auch Module enthalten können." #. wGWz9 #: python_locations.xhp @@ -2183,7 +2183,7 @@ "par_id771543358231022\n" "help.text" msgid "A library is used as a major grouping for either an entire category of macros, or for an entire application. Modules usually split functionality, such as user interaction and calculations. Individual macros are subroutines and functions. The Figure below shows an example of the hierarchical structure of macro libraries in %PRODUCTNAME." -msgstr "" +msgstr "Eine Bibliothek wird als Hauptgruppierung für eine ganze Kategorie von Makros oder für eine gesamte Anwendung verwendet. Module teilen in der Regel die Funktionen wie Benutzerinteraktion und Berechnungen auf. Einzelne Makros sind Unterroutinen und Funktionen. Die folgende Abbildung zeigt ein Beispiel für die hierarchische Struktur von Makrobibliotheken in %PRODUCTNAME." #. b8iEG #: python_locations.xhp @@ -2192,7 +2192,7 @@ "par_id771636279690940\n" "help.text" msgid "Library Container diagram" -msgstr "" +msgstr "Abbildung Makrobibliotheken" #. JqG95 #: python_locations.xhp @@ -2201,7 +2201,7 @@ "par_id171636114787810\n" "help.text" msgid "Figure: Macro Library hierarchy" -msgstr "" +msgstr "Abbildung: Hierarchie von Makrobibliotheken" #. dbwvM #: python_locations.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 "Die Container sind alle über die %PRODUCTNAME-Benutzeroberfläche erreichbar. Wählen Sie dazu Extras – Makros – Makros verwalten – Python…, um den Dialog Python-Makros zu öffnen." #. FU5EC #: python_locations.xhp @@ -2219,7 +2219,7 @@ "par_id801636114808666\n" "help.text" msgid "Three library containers are shown in the Macro From list:" -msgstr "" +msgstr "In der Liste Makros werden drei Bibliothekscontainer angezeigt:" #. RnBRr #: python_locations.xhp @@ -2228,7 +2228,7 @@ "par_id321636114854594\n" "help.text" msgid "My Macros: personal macros available for the %PRODUCTNAME user" -msgstr "" +msgstr "Meine Makros: Persönliche Makros, die für den %PRODUCTNAME-Benutzer verfügbar sind" #. BB8K2 #: python_locations.xhp @@ -2237,7 +2237,7 @@ "par_id471636114847530\n" "help.text" msgid "%PRODUCTNAME Macros: system macros distributed with LibreOffice for every computer user" -msgstr "" +msgstr "%PRODUCTNAME-Makros: Systemmakros, die mit LibreOffice für jeden Computerbenutzer installiert werden" #. kVY4C #: python_locations.xhp @@ -2246,7 +2246,7 @@ "par_id191636114858218\n" "help.text" msgid "Document macros: every document can contain macro libraries available in that document for all users" -msgstr "" +msgstr "Dokument-Makros: Jedes Dokument kann Makrobibliotheken enthalten, die in diesem Dokument für alle Benutzer verfügbar sind" #. iEtmS #: python_locations.xhp @@ -2273,7 +2273,7 @@ "hd_id591544049572647\n" "help.text" msgid "%PRODUCTNAME Macros" -msgstr "" +msgstr "%PRODUCTNAME-Makros" #. xBzRT #: 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-Makros können in Bibliotheken, Modulen und Makros organisiert werden. Verwenden Sie die Hierarchie von Makrobibliotheken als Leitfaden, wenn Sie neue Makros in Moduldateien, neue Moduldateien in Bibliotheksordnern oder neue Bibliotheksordner in Containern erstellen oder installieren." #. Zcfxg #: python_platform.xhp @@ -3479,7 +3479,7 @@ "tit\n" "help.text" msgid "Python Interactive Shell" -msgstr "Python Interaktive-Shell" +msgstr "Interaktive Python-Konsole" #. LUGZ7 #: python_shell.xhp @@ -3515,7 +3515,7 @@ "par_id851633601202270\n" "help.text" msgid "From a full-featured %PRODUCTNAME installed package, use either Basic or Python:" -msgstr "" +msgstr "Verwenden Sie in einem vollständig installierten %PRODUCTNAME entweder Basic oder Python:" #. 5HhXz #: python_shell.xhp @@ -3524,7 +3524,7 @@ "N0121\n" "help.text" msgid "Using a Basic macro" -msgstr "" +msgstr "Ein Basic-Makro verwenden" #. KhWLk #: python_shell.xhp @@ -3533,7 +3533,7 @@ "N0127\n" "help.text" msgid "Using a Python macro" -msgstr "" +msgstr "Ein Python-Makro verwenden" #. 3FCJH #: python_shell.xhp @@ -3542,7 +3542,7 @@ "N0141\n" "help.text" msgid "Example output" -msgstr "" +msgstr "Beispiel einer Ausgabe" #. MxDtE #: python_shell.xhp @@ -3551,7 +3551,7 @@ "N0142\n" "help.text" msgid "Python Interactive Console" -msgstr "" +msgstr "Interaktive Python-Konsole" #. fk6sx #: python_shell.xhp @@ -3560,7 +3560,7 @@ "hd_id381633446811095\n" "help.text" msgid "Using the Terminal" -msgstr "" +msgstr "Das Terminal verwenden" #. CNFdD #: python_shell.xhp @@ -3569,7 +3569,7 @@ "par_id801633601715910\n" "help.text" msgid "From a %PRODUCTNAME copy included in a GNU/Linux platform, use the terminal as shown:" -msgstr "" +msgstr "Verwenden Sie das in einer GNU/Linux-Plattform der %PRODUCTNAME-Kopie enthaltene Terminal wie folgt:" #. vWPwe #: python_shell.xhp @@ -3578,7 +3578,7 @@ "par_id531633444780190\n" "help.text" msgid "whereis or type terminal commands help locate Python interactive console:" -msgstr "" +msgstr "Die Terminal-Befehle whereis oder type helfen bei der Suche nach der interaktiven Python-Konsole:" #. 8Ei5d #: python_shell.xhp @@ -3587,7 +3587,7 @@ "hd_id311633513620803\n" "help.text" msgid "Alternative console" -msgstr "" +msgstr "Alternative Konsole" #. d8DCA #: python_shell.xhp @@ -3596,7 +3596,7 @@ "par_id81632760673283\n" "help.text" msgid "Use APSO extension console as an alternative:" -msgstr "" +msgstr "Verwenden Sie die Konsole APSO-Extension als eine Alternative:" #. 6h9CS #: python_shell.xhp @@ -3605,7 +3605,7 @@ "N0144\n" "help.text" msgid "APSO console" -msgstr "" +msgstr "APSO-Konsole" #. MxGkV #: python_shell.xhp @@ -3614,4 +3614,4 @@ "par_id351633599611244\n" "help.text" msgid "PythonShell function in ScriptForge.Exception service" -msgstr "" +msgstr "Funktion PythonShell im Dienst ScriptForge.Exception" diff -Nru libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/sbasic/shared/02.po libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/sbasic/shared/02.po --- libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/sbasic/shared/02.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/sbasic/shared/02.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-08-31 14:00+0000\n" +"PO-Revision-Date: 2022-10-13 10:18+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -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 "Wenn der zu importierende Dialog zusätzliche Sprachen zu denen der Bibliothek enthält, oder die Bibliothek überhaupt lokalisiert ist, erscheint ein Meldungsfeld mit den Schaltflächen Hinzufügen, Auslassen und Abbrechen." +msgstr "Wenn der importierte Dialog zusätzliche Sprachen im Vergleich zur Bibliothek enthält oder die Bibliothek überhaupt nicht lokalisiert ist, erscheint ein Meldungsfeld mit den Schaltflächen Hinzufügen, Auslassen und Abbrechen." #. XrhtD #: 11180000.xhp @@ -1769,7 +1769,7 @@ "par_id1261940\n" "help.text" msgid "Opens a dialog to enable or manage multiple sets of dialog resources for multiple languages." -msgstr "Öffnet einen Dialog, in welchem Sie mehrere Sätze von Sprachressourcen hinzufügen und verwalten können." +msgstr "Öffnet einen Dialog, in dem Sie mehrere Sätze von Sprachressourcen hinzufügen und verwalten können." #. vbEQt #: 20000000.xhp diff -Nru libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/sbasic/shared/03.po libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/sbasic/shared/03.po --- libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/sbasic/shared/03.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/sbasic/shared/03.po 2022-10-27 10:11:14.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-08-31 14:00+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" +"Last-Translator: Annabelle Wübbelsmann \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -1382,7 +1382,7 @@ "par_id701627155874259\n" "help.text" msgid "By using the Copy method, a copy of the whole Array object is made. In the example below, a and b are different objects and changing values in b will not affect values in a." -msgstr "Durch die Verwendung der Methode Copy wird eine Kopie des gesamten Objektes Array erstellt. Im Beispiel unten sind a und b unterschiedliche Objekte und das Ändern von Werten in b wirkt sich nicht auf Werte in a aus." +msgstr "Durch die Verwendung der Methode Copy wird eine Kopie des gesamten Objekts Array erstellt. Im Beispiel unten sind a und b unterschiedliche Objekte und das Ändern von Werten in b wirkt sich nicht auf Werte in a aus." #. UycBx #: sf_array.xhp diff -Nru libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/sbasic/shared.po libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/sbasic/shared.po --- libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/sbasic/shared.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/sbasic/shared.po 2022-10-27 10:11:14.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-08-03 17:46+0000\n" -"Last-Translator: Annabelle Wübbelsmann \n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -6683,7 +6683,7 @@ "hd_id3145221\n" "help.text" msgid "List entries" -msgstr "Listen-Einträge" +msgstr "Listeneinträge" #. Ga3fT #: 01170101.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, \"Dialogtitel\")" #. BaStC #: 03010103.xhp @@ -12893,7 +12893,7 @@ "par_id3151043\n" "help.text" msgid "Day: Integer expression that indicates the day of the specified month. The accepted range is from 1-31. No error is returned when you enter a non-existing day for a month shorter than 31 days." -msgstr "Tag: Ausdruck vom Typ Integer, der den Tag des angegebenen Monats angibt. Der zulässige Wertebereich ist 1-31. Es erscheint keine Fehlermeldung, wenn Sie einen nicht-existierenden Tag für einen Monat mit weniger als 31 Tage eingeben." +msgstr "Tag: Ausdruck vom Typ Integer, der den Tag des angegebenen Monats angibt. Der zulässige Wertebereich ist 1-31. Es erscheint keine Fehlermeldung, wenn Sie einen nicht existierenden Tag für einen Monat mit weniger als 31 Tage eingeben." #. cFoY9 #: 03030101.xhp @@ -16187,7 +16187,7 @@ "hd_id3149346\n" "help.text" msgid "Timer Function" -msgstr "" +msgstr "Funktion Timer" #. AKDaG #: 03030303.xhp @@ -16223,7 +16223,7 @@ "par_id3145748\n" "help.text" msgid "MsgBox lSec, 0, \"Seconds since midnight\"" -msgstr "" +msgstr "MsgBox lSec, 0, \"Zeit in Sekunden\"" #. E5DAZ #: 03030303.xhp @@ -16232,7 +16232,7 @@ "par_id3156283\n" "help.text" msgid "MsgBox Right(\"00\" & lHour , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSec , 2), 0, \"The time is\"" -msgstr "" +msgstr "MsgBox Right(\"00\" & lHour , 2) & \":\"& Right(\"00\" & lMin , 2) & \":\" & Right(\"00\" & lSec , 2), 0, \"Uhrzeit\"" #. oYudq #: 03030303.xhp @@ -16331,7 +16331,7 @@ "bm_id131554200364170\n" "help.text" msgid "Basic Mathematical constantsPi;Basic constantBasic constant;Pi" -msgstr "Mathematische Basic-KonstantenPi; Basic-KonstanteBasic-Konstanten; Pi" +msgstr "Mathematische BasiskonstantenPi; BasiskonstanteBasiskonstanten; Pi" #. DLv8z #: 03040000.xhp @@ -16448,7 +16448,7 @@ "par_id051620171114577052\n" "help.text" msgid "Print IsEmpty(sVar) ' Returns True" -msgstr "" +msgstr "Print IsEmpty(sVar) ' Gibt \"True\" zurück" #. YK88J #: 03040000.xhp @@ -16457,7 +16457,7 @@ "par_id051720170824106132\n" "help.text" msgid "Print oDoc ' Error" -msgstr "" +msgstr "Print oDoc ' Fehler" #. UDTHw #: 03040000.xhp @@ -16466,7 +16466,7 @@ "hd_id31634909394554\n" "help.text" msgid "MsgBox Named Constants" -msgstr "" +msgstr "Benannte Konstanten für MsgBox" #. CABUt #: 03040000.xhp @@ -16475,7 +16475,7 @@ "hd_id881634911199058\n" "help.text" msgid "GetAttr Named Constants" -msgstr "" +msgstr "Benannte Konstanten für GetAttr" #. FWBQE #: 03040000.xhp @@ -16484,7 +16484,7 @@ "hd_id611634911996367\n" "help.text" msgid "VarType Named Constants" -msgstr "" +msgstr "Benannte Konstanten für VarType" #. Xtpvq #: 03040000.xhp @@ -16520,7 +16520,7 @@ "bm_id391624288823741\n" "help.text" msgid "VBA Variable Type Named Constants" -msgstr "" +msgstr "VBA-Variable; Benannte Konstanten" #. XSqq4 #: 03040000.xhp @@ -16529,7 +16529,7 @@ "hd_id941628842567829\n" "help.text" msgid "VBA Color Named Constants" -msgstr "" +msgstr "Benannte VBA-Konstanten für Color" #. GX7VB #: 03040000.xhp @@ -16538,7 +16538,7 @@ "par_id611634907471277\n" "help.text" msgid "Named constant" -msgstr "" +msgstr "Benannte Konstante" #. 4wBCk #: 03040000.xhp @@ -16547,7 +16547,7 @@ "par_id861634907471277\n" "help.text" msgid "Red, Green, Blue
composition" -msgstr "" +msgstr "Rot, Grün, Blau
Zusammenstellung" #. y4iia #: 03040000.xhp @@ -16556,7 +16556,7 @@ "hd_id941624288567829\n" "help.text" msgid "Variable Type Named Constants" -msgstr "" +msgstr "Benannte Konstante für Variable Type" #. AzBpy #: 03040000.xhp @@ -16565,7 +16565,7 @@ "par_id31624288363725\n" "help.text" msgid "Named constant" -msgstr "" +msgstr "Benannte Konstante" #. SrPWN #: 03040000.xhp @@ -16574,7 +16574,7 @@ "par_id951624288363725\n" "help.text" msgid "Decimal value" -msgstr "" +msgstr "Dezimalwert" #. PVJr3 #: 03040000.xhp @@ -16583,7 +16583,7 @@ "hd_id881634911195890\n" "help.text" msgid "FormatDateTime VBA Named Constants" -msgstr "" +msgstr "Benannte VBA-Konstanten für FormatDateTime" #. jUhTB #: 03040000.xhp @@ -16592,7 +16592,7 @@ "hd_id801634912153888\n" "help.text" msgid "StrConv VBA Named Constants" -msgstr "" +msgstr "Benannte VBA-Konstanten für StrConv" #. pU993 #: 03040000.xhp @@ -16601,7 +16601,7 @@ "hd_id131634910758620\n" "help.text" msgid "WeekDayName VBA Named Constants" -msgstr "" +msgstr "Benannte VBA-Konstanten für WeekDayName" #. Y5GhB #: 03040000.xhp @@ -16610,7 +16610,7 @@ "hd_id531634913323423\n" "help.text" msgid "Miscellaneous VBA Named Constants" -msgstr "" +msgstr "Weitere benannte VBA-Konstanten" #. SHFCr #: 03040000.xhp @@ -18905,7 +18905,7 @@ "hd_id3150616\n" "help.text" msgid "Atn Function" -msgstr "" +msgstr "Funktion Atn" #. yugFQ #: 03080101.xhp @@ -18923,7 +18923,7 @@ "par_id3143271\n" "help.text" msgid "The arctangent is the inverse of the tangent function. The Atn Function returns the angle \"Alpha\", expressed in radians, using the tangent of this angle. The function can also return the angle \"Alpha\" by comparing the ratio of the length of the side that is opposite of the angle to the length of the side that is adjacent to the angle in a right-angled triangle." -msgstr "" +msgstr "Der Arkustangens ist die Umkehrung der Tangensfunktion. Die Funktion Atn gibt den Winkel „Alpha“ zurück, ausgedrückt in Bogenmaß, wobei der Tangens dieses Winkels verwendet wird. Die Funktion kann auch den Winkel „Alpha“ zurückgeben, indem sie das Verhältnis der Länge der Seite, die dem Winkel gegenüberliegt, mit der Länge der Seite, die dem Winkel benachbart ist, in einem rechtwinkligen Dreieck vergleicht." #. HbFxP #: 03080101.xhp @@ -18932,7 +18932,7 @@ "par_id3145315\n" "help.text" msgid "Atn(side opposite the angle/side adjacent to angle)= Alpha" -msgstr "" +msgstr "Atn(Seite gegenüber/neben dem Winkel)=Alpha" #. Wo87E #: 03080101.xhp @@ -18941,7 +18941,7 @@ "par_id3148947\n" "help.text" msgid "Atn (Number As Double) As Double" -msgstr "" +msgstr "Atn (Zahl As Double) As Double" #. nnJyb #: 03080101.xhp @@ -18959,7 +18959,7 @@ "par_id3156212\n" "help.text" msgid "Number: Any numerical expression that represents the ratio of two sides of a right triangle. The Atn function returns the corresponding angle in radians (arctangent)." -msgstr "" +msgstr "Number: Ein numerischer Ausdruck, der das Verhältnis zweier Seiten eines rechtwinkligen Dreiecks darstellt. Die Funktion Atn gibt den entsprechenden Winkel im Bogenmaß aus" #. qhMAk #: 03080101.xhp @@ -18995,7 +18995,7 @@ "par_id3159252\n" "help.text" msgid "Pi is here the fixed circle constant with the rounded value 3.14159. Pi is a Basic mathematical constant." -msgstr "" +msgstr "Pi ist die feste Kreiskonstante mit dem gerundeten Wert 3,14159. Pi ist eine Mathematische Basiskonstante." #. BBQTN #: 03080101.xhp @@ -19076,7 +19076,7 @@ "hd_id3154923\n" "help.text" msgid "Cos Function" -msgstr "" +msgstr "Funktion Cos" #. EEVjg #: 03080102.xhp @@ -19094,7 +19094,7 @@ "par_id3150358\n" "help.text" msgid "Using the angle Alpha, the Cos function calculates the ratio of the length of the side that is adjacent to the angle, divided by the length of the hypotenuse in a right-angled triangle." -msgstr "" +msgstr "Unter Verwendung des Winkels Alpha berechnet Cos das Verhältnis der Länge der Seite, die an den Winkel angrenzt, geteilt durch die Länge der Hypotenuse in einem rechtwinkligen Dreieck." #. eEzRP #: 03080102.xhp @@ -19103,7 +19103,7 @@ "par_id3154141\n" "help.text" msgid "Cos(Alpha) = Adjacent/Hypotenuse" -msgstr "" +msgstr "Cos(Alpha) = Gegenkathete/Hypotenuse" #. zfq28 #: 03080102.xhp @@ -19112,7 +19112,7 @@ "par_id3145172\n" "help.text" msgid "Cos (Number As Double) As Double" -msgstr "" +msgstr "Cos (Zahl As Double) As Double" #. 5SNwE #: 03080102.xhp @@ -19166,7 +19166,7 @@ "par_id3152885\n" "help.text" msgid "Pi is here the fixed circle constant with the rounded value 3.14159..." -msgstr "" +msgstr "Pi ist hier die feste Kreiskonstante mit dem gerundeten Wert 3,14159…" #. 4K6RE #: 03080102.xhp @@ -19247,7 +19247,7 @@ "hd_id3153896\n" "help.text" msgid "Sin Function" -msgstr "" +msgstr "Funktion Sin" #. fEasV #: 03080103.xhp @@ -19265,7 +19265,7 @@ "par_id3153379\n" "help.text" msgid "Using the angle Alpha, the Sin function returns the ratio of the length of the opposite side of an angle to the length of the hypotenuse in a right-angled triangle." -msgstr "" +msgstr "Unter Verwendung des Winkels Alpha gibt die Funktion Sin das Verhältnis der Länge der gegenüberliegenden Seite eines Winkels zur Länge der Hypotenuse in einem rechtwinkligen Dreieck zurück." #. k3iCL #: 03080103.xhp @@ -19274,7 +19274,7 @@ "par_id3148798\n" "help.text" msgid "Sin(Alpha) = side opposite the angle/hypotenuse" -msgstr "" +msgstr "Sin(Alpha) = Seite gegenüber dem Winkel/Hypotenuse" #. EYMBG #: 03080103.xhp @@ -19283,7 +19283,7 @@ "par_id3154909\n" "help.text" msgid "Sin (Number As Double) As Double" -msgstr "" +msgstr "Sin (Zahl As Double) As Double" #. q3Gct #: 03080103.xhp @@ -19310,7 +19310,7 @@ "par_id3155413\n" "help.text" msgid "To convert degrees to radians, multiply degrees by Pi/180, and to convert radians to degrees, multiply radians by 180/Pi." -msgstr "" +msgstr "Um Grad in Radiant umzurechnen, multiplizieren Sie Grad mit Pi/180, und um Radiant in Grad umzurechnen, multiplizieren Sie Radiant mit 180/Pi." #. yescR #: 03080103.xhp @@ -19319,7 +19319,7 @@ "par_id3149664\n" "help.text" msgid "degrees=(radians*180)/Pi" -msgstr "" +msgstr "Grad=(Radiant*180)/Pi" #. PZTcG #: 03080103.xhp @@ -19328,7 +19328,7 @@ "par_id3153143\n" "help.text" msgid "radians=(degrees*Pi)/180" -msgstr "" +msgstr "Radiant=(Grad*Pi)/180" #. EFgfE #: 03080103.xhp @@ -31289,7 +31289,7 @@ "par_id3154686\n" "help.text" msgid "If the string is shorter than the string variable, LSet left-aligns the string within the string variable. Any remaining positions in the string variable are replaced by spaces. If the string is longer than the string variable, only the leftmost characters up to the length of the string variable are copied. With the LSet statement, you can also copy a user-defined type variable to another variable of the same type." -msgstr "Ist die Zeichenkette kürzer als die Zeichenkettenvariable, ordnet die Anweisung LSet die Zeichenkette linksbündig in der Zeichenkettenvariablen an. Die freien Stellen der Zeichenkettenvariablen werden mit Leerzeichen aufgefüllt. Ist die Zeichenkette länger, werden nur soviele Zeichen der Zeichenkette linksbündig in der Zeichenkettenvariablen angeordnet, wie diese aufnehmen kann. Mit der Anweisung LSet ist es außerdem möglich, die Variable eines benutzerdefinierten Datentyps in eine andere des selben Datentyps zu kopieren." +msgstr "Ist die Zeichenkette kürzer als die Zeichenkettenvariable, ordnet die Anweisung LSet die Zeichenkette linksbündig in der Zeichenkettenvariablen an. Die freien Stellen der Zeichenkettenvariablen werden mit Leerzeichen aufgefüllt. Ist die Zeichenkette länger, werden nur so viele Zeichen der Zeichenkette linksbündig in der Zeichenkettenvariablen angeordnet, wie diese aufnehmen kann. Mit der Anweisung LSet ist es außerdem möglich, die Variable eines benutzerdefinierten Datentyps in eine andere desselben Datentyps zu kopieren." #. jJepi #: 03120304.xhp @@ -41180,7 +41180,7 @@ "par_id3154702\n" "help.text" msgid "A running macro can be aborted with Shift+CommandCtrl+Q, also from outside of the Basic IDE. If you are inside the Basic IDE and the macro halts at a breakpoint, Shift+CommandCtrl+Q stops execution of the macro, but you can recognize this only after the next F5, F8, or Shift+F8." -msgstr "Die Ausführung eines Makros kann mit Umschalt+BefehlStrg+Q auch von außerhalb der Basic-IDE abgebrochen werden. Wenn Sie in der Basic-IDE arbeiten und das Makro an einem Haltepunkt anhält, wird dessen Ausführung mit Umschalt+BefehlStrg+Q zwar angehalten, Sie erkennen dies aber erst nach der nächsten Betätigung von F5, F8 oder Umschalt+F8." +msgstr "Die Ausführung eines Makros kann mit BefehlStrg+Umschalt+Q auch von außerhalb der Basic-IDE abgebrochen werden. Wenn Sie in der Basic-IDE arbeiten und das Makro an einem Haltepunkt anhält, wird dessen Ausführung mit BefehlStrg+Umschalt+Q zwar angehalten, Sie erkennen dies aber erst nach der nächsten Betätigung von F5, F8 oder Umschalt+F8." #. UdAFP #: main0211.xhp diff -Nru libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/scalc/00.po libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/scalc/00.po --- libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/scalc/00.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/scalc/00.po 2022-10-27 10:11:14.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-02-14 05:38+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" +"Last-Translator: Annabelle Wübbelsmann \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: 1564805193.000000\n" #. E9tti @@ -1733,7 +1733,7 @@ "par_id3153297\n" "help.text" msgid "Choose Insert - Pivot Table, in the Select Source dialog choose the option Current selection." -msgstr "Wählen Sie Einfügen – Pivot-Tabelle… und aktivieren Sie im Dialog Quelle wählen die Option Aktuelle Auswahl." +msgstr "Wählen Sie Einfügen – Pivot-Tabelle… und aktivieren Sie im Dialog Quelle auswählen die Option Aktuelle Auswahl." #. GACGc #: 00000412.xhp @@ -1742,7 +1742,7 @@ "par_id3145118\n" "help.text" msgid "Choose Insert - Pivot Table, in the Select Source dialog choose the option Data source registered in $[officename], click OK to see Select Data Source dialog." -msgstr "Wählen Sie Einfügen – Pivot-Tabelle… , aktivieren Sie im Dialog Quelle wählen die Option In $[officename] angemeldete Datenquelle und klicken Sie auf OK, um den Dialog Datenquelle auswählen zu öffnen." +msgstr "Wählen Sie Einfügen – Pivot-Tabelle…, aktivieren Sie im Dialog Quelle auswählen die Option In $[officename] angemeldete Datenquelle und klicken Sie auf OK, um den Dialog Datenquelle auswählen zu öffnen." #. yTKVJ #: 00000412.xhp diff -Nru libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/scalc/01.po libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/scalc/01.po --- libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/scalc/01.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/scalc/01.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-08-31 14:00+0000\n" +"PO-Revision-Date: 2022-10-27 08:41+0000\n" "Last-Translator: Annabelle Wübbelsmann \n" "Language-Team: German \n" "Language: de\n" @@ -10400,7 +10400,7 @@ "hd_id631520887352751\n" "help.text" msgid "Handling non-logical arguments in logical functions" -msgstr "Handhabung nicht-logischer Argumente in logischen Funktionen" +msgstr "Handhabung nicht logischer Argumente in logischen Funktionen" #. DRkRS #: 04060105.xhp @@ -16358,7 +16358,7 @@ "par_id3150403\n" "help.text" msgid "You can also enter the =MUNIT(5) formula in the last cell of the selected range (E5), and press Shift + Command + EnterShift + Ctrl + Enter." -msgstr "Sie können auch die Formel =EINHEITSMATRIX(5) in die letzte Zelle des ausgewählten Bereich (E5) eingeben und Umschalt+Befehl+EingabetasteUmschalt+Strg+Eingabetaste drücken." +msgstr "Sie können auch die Formel =EINHEITSMATRIX(5) in die letzte Zelle des ausgewählten Bereich (E5) eingeben und Befehl+Umschalt+EingabetasteStrg+Umschalt+Eingabetaste drücken." #. gB9Be #: 04060107.xhp @@ -16439,7 +16439,7 @@ "par_id3155904\n" "help.text" msgid "In the following table, column A lists unsorted measurement values. Column B contains the upper limit you entered for the classes into which you want to divide the data in column A. According to the limit entered in B1, the FREQUENCY function returns the number of measured values less than or equal to 5. As the limit in B2 is 10, the FREQUENCY function returns the second result as the number of measured values that are greater than 5 and less than or equal to 10. The text you entered in B6, \">25\", is only for reference purposes." -msgstr "In Spalte A der folgenden Tabelle sind unsortierte Messwerte aufgeführt. Spalte B enthält die von Ihnen angegebenen oberen Grenzen für die Klassen, in die Sie die Daten aus Spalte A verteilen möchten. Gemäß der in B1 eingegebenen Grenze ergibt die Funktion HÄUFIGKEIT die Anzahl der Messwerte kleiner als oder gleich 5. Gemäß der Grenze von 10 in B2 ergibt HÄUFIGKEIT als zweites Ergebnis die Anzahl der Messwerte größer als 5 und kleiner als oder gleich 10. Der in B6 eingegebene Text \">25\" dient lediglich zu Referenzzwecken." +msgstr "In Spalte A der folgenden Tabelle sind unsortierte Messwerte aufgeführt. Spalte B enthält die von Ihnen angegebenen oberen Grenzen für die Klassen, in die Sie die Daten aus Spalte A verteilen möchten. Gemäß der in B1 eingegebenen Grenze ergibt die Funktion HÄUFIGKEIT die Anzahl der Messwerte kleiner oder gleich 5. Gemäß der Grenze von 10 in B2 ergibt HÄUFIGKEIT als zweites Ergebnis die Anzahl der Messwerte größer als 5 und kleiner oder gleich 10. Der in B6 eingegebene Text \">25\" dient lediglich zu Referenzzwecken." #. tVPA4 #: 04060107.xhp @@ -16682,7 +16682,7 @@ "par_id3159366\n" "help.text" msgid "In the spreadsheet, select the range in which the transposed array can appear. If the original array has n rows and m columns, your selected range must have at least m rows and n columns. Then enter the formula directly, select the original array and press Shift + Command + EnterShift + Ctrl + Enter. Or, if you are using the Function Wizard, mark the Array check box. The transposed array appears in the selected target range and is protected automatically against changes." -msgstr "Wählen Sie im Tabellendokument einen Bereich aus, in dem die transponierte Matrix angezeigt werden kann. Der ausgewählte Bereich muss dabei mindestens die selbe Zeilen- und Spaltenanzahl aufweisen, wie die Originalmatrix. Geben Sie dann die Formel direkt ein, wählen Sie die Originalmatrix aus und drücken Sie Umschalt+Befehl+EingabetasteUmschalt+Strg+Eingabetaste. Anderenfalls, wenn Sie mit dem Funktionsassistenten arbeiten, aktivieren Sie das Markierfeld Matrix. Die transponierte Matrix erscheint im ausgewählten Zielbereich und ist automatisch vor Änderungen geschützt." +msgstr "Wählen Sie im Tabellendokument einen Bereich aus, in dem die transponierte Matrix angezeigt werden kann. Der ausgewählte Bereich muss dabei mindestens die selbe Zeilen- und Spaltenanzahl aufweisen wie die Originalmatrix. Geben Sie dann die Formel direkt ein, wählen Sie die Originalmatrix aus und drücken Sie Befehl+Umschalt+EingabetasteStrg+Umschalt+Eingabetaste. Anderenfalls, wenn Sie mit dem Funktionsassistenten arbeiten, aktivieren Sie das Markierfeld Matrix. Die transponierte Matrix erscheint im ausgewählten Zielbereich und ist automatisch vor Änderungen geschützt." #. 3oHh6 #: 04060107.xhp @@ -16709,7 +16709,7 @@ "par_id3178518\n" "help.text" msgid "Then make sure to enter it as matrix formula with Shift + Command + EnterShift + Ctrl + Enter. The result will be as follows:" -msgstr "Abschließend stellen Sie sicher, dass Sie sie als Matrixformel mittels Umschalt+Befehl+EingabetasteUmschalt+Strg+Eingabetaste abschließen. Das Ergebnis sieht folgendermaßen aus:" +msgstr "Abschließend stellen Sie sicher, dass Sie sie als Matrixformel mittels Befehl+Umschalt+EingabetasteStrg+Umschalt+Eingabetaste abschließen. Das Ergebnis sieht folgendermaßen aus:" #. CGWog #: 04060107.xhp @@ -18815,7 +18815,7 @@ "par_id3149200\n" "help.text" msgid "As soon as you enter a number in A1 B1 will show the corresponding text contained in the second column of reference D1:E100. Entering a nonexistent number displays the text with the next number down. To prevent this, enter FALSE as the last parameter in the formula so that an error message is generated when a nonexistent number is entered." -msgstr "Sobald Sie in A1 eine Nummer eingeben, wird in B1 der zugehörige Text angezeigt, der in der zweiten Spalte des Bezugs D1:E100 steht. Geben Sie eine nicht-existente Nummer ein, wird der Text mit der nächstkleineren Nummer angezeigt. Um dies zu verhindern, fügen Sie als letzten Parameter FALSCH in die Formel ein, damit bei Eingabe einer nicht-existenten Nummer eine Fehlermeldung ausgegeben wird." +msgstr "Sobald Sie in A1 eine Nummer eingeben, wird in B1 der zugehörige Text angezeigt, der in der zweiten Spalte des Bezugs D1:E100 steht. Geben Sie eine nicht existente Nummer ein, wird der Text mit der nächstkleineren Nummer angezeigt. Um dies zu verhindern, fügen Sie als letzten Parameter FALSCH in die Formel ein, damit bei Eingabe einer nicht existenten Nummer eine Fehlermeldung ausgegeben wird." #. BPHvz #: 04060109.xhp @@ -56300,7 +56300,7 @@ "par_id3163792\n" "help.text" msgid "If the spreadsheet is exported to Microsoft Excel, the CEILING function is exported as the equivalent CEILING.MATH function that has existed since Excel 2013. If you plan to use the spreadsheet with earlier Excel versions, use either CEILING.PRECISE that has existed since Excel 2010, or CEILING.XCL that is exported as the CEILING function compatible with all Excel versions." -msgstr "Wenn die Tabelle nach MS Excel exportiert wird, wird die Funktion OBERGRENZE als ihre äquivalente Funktion OBERGRENZE.MATHEMATIK exportiert, welche seit Excel 2013 existiert hat. Wenn Sie die Verwendung der Tabelle mit einer älteren Excel-Version planen, verwenden Sie entweder OBERGRENZE.GENAU, welche seit Excel 2010 existiert hat, oder OBERGRENZE.EXCEL, welche OBERGRENZE als eine für alle Excel-Versionen kompatible Funktion exportiert." +msgstr "Wenn die Tabelle nach MS Excel exportiert wird, wird die Funktion OBERGRENZE als ihre äquivalente Funktion OBERGRENZE.MATHEMATIK exportiert, die seit Excel 2013 existiert. Wenn Sie die Verwendung der Tabelle mit einer älteren Excel-Version planen, verwenden Sie entweder OBERGRENZE.GENAU, die seit Excel 2010 existiert, oder OBERGRENZE.EXCEL, die OBERGRENZE als eine mit allen Excel-Versionen kompatible Funktion exportiert." #. 3DwLL #: func_ceiling.xhp @@ -64787,7 +64787,7 @@ "par_id991573517299918\n" "help.text" msgid "Text: the text in which the search is to be made." -msgstr "Text: Der Text, in welchem gesucht werden soll." +msgstr "Text: Der Text, in dem gesucht werden soll." #. oDk8C #: func_searchb.xhp @@ -70124,7 +70124,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 "Logarithmische Regression: Ermittelt eine Logarithmusfunktion in Form von y = b + a1·ln[x1] + a2·ln[x2] + a3·ln[x3] …, wobei ai der i-te Koeffizient ist, b ist der Schnittpunkt und ln[xi] der natürliche Logarithmus von der i-ten unabhänigen Variable, die am besten zu den Daten passt." +msgstr "Logarithmische Regression: Ermittelt eine Logarithmusfunktion in Form von y = b + a1·ln[x1] + a2·ln[x2] + a3·ln[x3] …, wobei ai der i-te Koeffizient ist, b ist der Schnittpunkt und ln[xi] der natürliche Logarithmus von der i-ten unabhängigen Variable, die am besten zu den Daten passt." #. YfNEL #: statistics_regression.xhp @@ -71465,7 +71465,7 @@ "par_id861521496523519\n" "help.text" msgid "The XML Source feature allows to import data from arbitrarily structured XML content into cells in an existing spreadsheet document. It allows XML content to be imported either partially or in full, depending on the structure of the XML content and the map definitions that the user defines. The user can specify multiple non-overlapping sub-structures to be mapped to different cell positions within the same document. The user can import either element contents, attribute values or both." -msgstr "Die Funktion XML-Quelle ermöglicht den Import von Daten aus beliebig strukturierten XML-Inhalten in Zellen eines bestehenden Tabellendokuments. Sie ermöglicht sowohl den teilweisen als auch den vollständigen Import, abhängig von der Struktur des XML-Inhalts und den durch den Benutzer festgelegten XML-Zuordnungen. Der Benutzer kann mehrere nicht-überlappende Unterstrukturen festlegen, um sie verschiedenen Zellpositionen innerhalb des selben Dokuments zuzuweisen. Der Benutzer kann entweder Elementinhalte, Attribute oder beides importieren." +msgstr "Die Funktion XML-Quelle ermöglicht den Import von Daten aus beliebig strukturierten XML-Inhalten in Zellen eines bestehenden Tabellendokuments. Sie ermöglicht sowohl den teilweisen als auch den vollständigen Import, abhängig von der Struktur des XML-Inhalts und den durch den Benutzer festgelegten XML-Zuordnungen. Der Benutzer kann mehrere nicht überlappende Unterstrukturen festlegen, um sie verschiedenen Zellpositionen innerhalb desselben Dokuments zuzuweisen. Der Benutzer kann entweder Elementinhalte, Attribute oder beides importieren." #. SBwHr #: xml_source.xhp @@ -71555,7 +71555,7 @@ "par_id521521494825665\n" "help.text" msgid "single non-recurring element, represented by the symbol , and" -msgstr "einfaches nicht-wiederkehrendes Element, dargestellt durch das Symbol , und" +msgstr "einzelnes nicht wiederkehrendes Element, dargestellt durch das Symbol , und" #. ReEmy #: xml_source.xhp @@ -71573,7 +71573,7 @@ "par_id451521494864514\n" "help.text" msgid "A non-recurring element is an element that can only occur once under the same parent. It is mapped to a single cell in the document." -msgstr "Ein nicht-wiederkehrendes Element ist ein Element, welches nur einmal unterhalb des selben Elternelements auftritt. Es wird einer einzelnen Zelle im Dokument zugewiesen." +msgstr "Ein nicht wiederkehrendes Element ist ein Element, welches nur einmal unterhalb desselben Elternelements auftritt. Es wird einer einzelnen Zelle im Dokument zugewiesen." #. WVC7K #: xml_source.xhp @@ -71600,7 +71600,7 @@ "par_id661521494897796\n" "help.text" msgid "This field specifies the position of a cell in the document that an element or an attribute is linked to. If it is a non-recurring element or an attribute, it simply points to the cell where the value of the linked element/attribute will get imported. If it is a recurring element, it points to the top-left cell of the range where the whole record entries plus header will get imported." -msgstr "Dieses Feld legt die Position einer Zelle in dem Dokument fest, mit welcher ein Element oder Attribut verknüpft ist. Wenn es ein nicht-wiederkehrendes Element oder ein Attribut ist, verweist es einfach auf eine Zelle, in die der Wert des verlinkten Elements oder Attributs importiert wird. Wenn es ein wiederkehrendes Element ist, verweist es auf die obere linke Zelle des Bereichs, in den der gesamte Datensatz zuzüglich Kopfzeile importiert wird." +msgstr "Dieses Feld legt die Position einer Zelle in dem Dokument fest, mit der ein Element oder Attribut verknüpft ist. Wenn es ein nicht wiederkehrendes Element oder ein Attribut ist, verweist es einfach auf eine Zelle, in die der Wert des verlinkten Elements oder Attributs importiert wird. Wenn es ein wiederkehrendes Element ist, verweist es auf die obere linke Zelle des Bereichs, in den der gesamte Datensatz zuzüglich Kopfzeile importiert wird." #. ipMuD #: xml_source.xhp diff -Nru libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/scalc/02.po libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/scalc/02.po --- libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/scalc/02.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/scalc/02.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE VERSION\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: 2022-01-06 07:38+0000\n" -"Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"PO-Revision-Date: 2022-10-13 10:19+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: 1551594836.000000\n" #. aSE5T @@ -1085,7 +1085,7 @@ "hd_id3633533\n" "help.text" msgid "Formula" -msgstr "Formular" +msgstr "Formel" #. MABzX #: 18010000.xhp diff -Nru libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/scalc/04.po libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/scalc/04.po --- libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/scalc/04.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/scalc/04.po 2022-10-27 10:11:14.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:02+0100\n" -"PO-Revision-Date: 2022-05-18 09:27+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" +"Last-Translator: Annabelle Wübbelsmann \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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565271348.000000\n" #. NQkD7 @@ -59,7 +59,7 @@ "par_id3153967\n" "help.text" msgid "To create a matrix in which all the cells contain the same information as what you entered on the Input line, press Shift+CommandCtrl+Enter. You cannot edit the components of the matrix." -msgstr "Um eine Matrix zu erstellen, in der alle Zellen die in die Eingabezeile eingegebenen Informationen enthalten, drücken Sie Umschalt+BefehlStrg+Eingabetaste. Die Komponenten der Matrix lassen sich nicht bearbeiten." +msgstr "Um eine Matrix zu erstellen, in der alle Zellen die in die Eingabezeile eingegebenen Informationen enthalten, drücken Sie BefehlStrg+Umschalt+Eingabetaste. Die Komponenten der Matrix lassen sich nicht bearbeiten." #. GFbcA #: 01020000.xhp @@ -140,7 +140,7 @@ "par_id3159093\n" "help.text" msgid "Moves the cursor to the first cell in the sheet (A1)." -msgstr "Verschiebt den Cursor zur ersten Zelle in der Tabelle (A1)." +msgstr "Bewegt den Cursor zur ersten Zelle in der Tabelle (A1)." #. eP4Fr #: 01020000.xhp @@ -158,7 +158,7 @@ "par_id3153283\n" "help.text" msgid "Moves the cursor to the last cell on the sheet that contains data." -msgstr "Verschiebt den Cursor zur letzten Zelle in der Tabelle, die Inhalt aufweist." +msgstr "Bewegt den Cursor zur letzten Zelle in der Tabelle, die Inhalt aufweist." #. 4aZBF #: 01020000.xhp @@ -176,7 +176,7 @@ "par_id3159205\n" "help.text" msgid "Moves the cursor to the first cell of the current row." -msgstr "Verschiebt den Cursor zur ersten Zelle der aktuellen Zeile." +msgstr "Bewegt den Cursor zur ersten Zelle der aktuellen Zeile." #. BsKYJ #: 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 "Bewegt den Cursor nach unten zum Anfang und Ende von Zellenbereichen mit Daten. Wenn die Zelle unterhalb vom Cursor leer oder die Zelle mit dem Cursor leer ist, bewegt sich der Cursor in der aktuellen Spalte nach oben, bis er die nächste Zelle mit Inhalt erreicht. Wenn alle Zellen in derselben Spalte unterhalb des Cursors leer sind, bewegt sich der Cursor zur letzten Zelle in der Spalte." +msgstr "Bewegt den Cursor nach unten zum Anfang und Ende von Zellenbereichen mit Daten. Wenn die Zelle unterhalb vom Cursor leer oder die Zelle mit dem Cursor leer ist, bewegt sich der Cursor in der aktuellen Spalte nach unten, bis er die nächste Zelle mit Inhalt erreicht. Wenn alle Zellen in derselben Spalte unterhalb des Cursors leer sind, bewegt sich der Cursor zur letzten Zelle in der Spalte." #. 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 "Mithilfe der Tastenkombinationen BefehlStrg+Pfeiltasten werden alle Zellen des durch die Cursorbewegungen erzeugten Bereichs markiert. Wenn dieser Befehl verwendet wird, um Zeilen und Spalten zusammen zu markieren, wird ein rechteckiger Zellbereich ausgewählt. Wenn sich der Cursor in einer leeren Zelle befindet, erstreckt sich die Auswahl von der aktuellen Zelle bis zur ersten Zelle mit einem Wert in Richtung der gedrückten Pfeiltaste." +msgstr "Mit BefehlStrg+Umschalt+Pfeiltasten werden alle Zellen des durch die Cursorbewegungen erzeugten Bereichs markiert. Wenn dieser Befehl verwendet wird, um Zeilen und Spalten zusammen zu markieren, wird ein rechteckiger Zellbereich ausgewählt. Wenn sich der Cursor in einer leeren Zelle befindet, erstreckt sich die Auswahl von der aktuellen Zelle bis zur ersten Zelle mit einem Wert in Richtung der gedrückten Pfeiltaste." #. F95ji #: 01020000.xhp @@ -509,7 +509,7 @@ "par_idN10AFC\n" "help.text" msgid "Shift+CommandCtrl+Page Up" -msgstr "Umschalt+BefehlStrg+Bild nach oben" +msgstr "BefehlStrg+Umschalt+Bild nach oben" #. RBou4 #: 01020000.xhp @@ -518,7 +518,7 @@ "par_idN10B00\n" "help.text" msgid "Adds the previous sheet to the current selection of sheets. If all the sheets in a spreadsheet are selected, this shortcut key combination only selects the previous sheet. Makes the previous sheet the current sheet." -msgstr "Fügt die vorherige Tabelle zur aktuellen Auswahl der Tabellen hinzu. Wenn alle Tabellen in einem Tabellendokumente ausgewählt sind, wählt diese Tastenkombination nur die vorherige Tabelle aus. Macht die vorherige Tabelle zur aktuellen Tabelle." +msgstr "Fügt die vorherige Tabelle zur aktuellen Auswahl der Tabellen hinzu. Wenn alle Tabellen in einem Tabellendokument ausgewählt sind, wählt diese Tastenkombination nur die vorherige Tabelle aus. Macht die vorherige Tabelle zur aktuellen Tabelle." #. c6GDa #: 01020000.xhp @@ -527,7 +527,7 @@ "par_idN10B03\n" "help.text" msgid "Shift+CommandCtrl+Page Down" -msgstr "Umschalt+BefehlStrg+Bild nach unten" +msgstr "BefehlStrg+Umschalt+Bild nach unten" #. ZwywJ #: 01020000.xhp @@ -536,7 +536,7 @@ "par_idN10B07\n" "help.text" msgid "Adds the next sheet to the current selection of sheets. If all the sheets in a spreadsheet are selected, this shortcut key combination only selects the next sheet. Makes the next sheet the current sheet." -msgstr "Fügt die nächste Tabelle zur aktuellen Auswahl der Tabellen hinzu. Wenn alle Tabellen in einem Tabellendokumente ausgewählt sind, wählt diese Tastenkombination nur die nächste Tabelle aus. Macht die nächste Tabelle zur aktuellen Tabelle." +msgstr "Fügt die nächste Tabelle zur aktuellen Auswahl der Tabellen hinzu. Wenn alle Tabellen in einem Tabellendokument ausgewählt sind, wählt diese Tastenkombination nur die nächste Tabelle aus. Macht die nächste Tabelle zur aktuellen Tabelle." #. aErRL #: 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 "Bewegt den Cursor um eine Zelle in einem ausgewählten Bereich nach unten. Um die Richtung des Cursors festzulegen, in die sich dieser bewegen soll, wählen Sie %PRODUCTNAME – EinstellungenExtras– Optionen… – %PRODUCTNAME Calc – Allgemein und ändern Sie die Option Eingabetaste bewegt die Auswahl nach." +msgstr "Bewegt den Cursor um eine Zelle in einem ausgewählten Bereich nach unten. Um die Richtung des Cursors festzulegen, in die sich dieser bewegen soll, wählen Sie %PRODUCTNAME – EinstellungenExtras – Optionen… – %PRODUCTNAME Calc – Allgemein und ändern Sie die Option Eingabetaste bewegt die Auswahl nach." #. DbRBy #: 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 "Wenn der Zelleninhalt gerade in die Zwischenablage kopiert wurde und keine zusätzliche Bearbeitung in der aktuellen Datei vorgenommen wurde, wird durch Drücken der Eingabetaste der Inhalt an der aktuellen Position des Cursor eingefügt." +msgstr "Wenn der Zelleninhalt gerade in die Zwischenablage kopiert wurde und keine zusätzliche Bearbeitung in der aktuellen Datei vorgenommen wurde, wird durch Drücken der Eingabetaste der Inhalt an der aktuellen Position des Cursors eingefügt." #. 2MKS8 #: 01020000.xhp @@ -725,7 +725,7 @@ "par_id8070314\n" "help.text" msgid "The ` key is located next to the \"1\" key on most English keyboards. If your keyboard does not show this key, you can assign another key: Choose Tools - Customize, click the Keyboard tab. Select the \"View\" category and the \"Toggle Formula\" function." -msgstr "Das ` ist auf den meisten deutschen Tastaturen neben dem \"ß\". Wenn Ihre Tastatur diese Taste nicht hat, können Sie eine andere Taste auswählen: Wählen Sie \"Extras – Anpassen…\" und wechseln Sie in das Register \"Tastatur\". Wählen Sie die Kategorie \"Ansicht\" und die Funktion \"Formel umschalten\"." +msgstr "Das ` ist auf den meisten deutschen Tastaturen neben dem \"ß\". Wenn Ihre Tastatur diese Taste nicht hat, können Sie eine andere Taste auswählen: Wählen Sie \"Extras – Anpassen…\" und wechseln Sie in das Register \"Tastatur\". Wählen Sie den Bereich \"Ansicht\" und die Funktion \"Formel\"." #. De3Yx #: 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 "Der Tabellenname wird bearbeitbar. Bearbeiten Sie den Tabellennamen und drücken Sie nach Beendigung die Eingabetaste." +msgstr "Der Tabellenname wird bearbeitbar. Bearbeiten Sie den Tabellennamen und drücken Sie die Eingabetaste, wenn Sie fertig sind." #. TDGrd #: 01020000.xhp @@ -923,7 +923,7 @@ "hd_id3147366\n" "help.text" msgid "Shift+CommandCtrl+F2" -msgstr "Umschalt+BefehlStrg+F2" +msgstr "BefehlStrg+Umschalt+F2" #. uPqcZ #: 01020000.xhp @@ -932,7 +932,7 @@ "par_id3155929\n" "help.text" msgid "Moves the cursor to the Input line where you can enter a formula for the current cell." -msgstr "Verschiebt den Cursor in die Eingabezeile, in die Sie eine Formel für die aktuelle Zelle eingeben können." +msgstr "Bewegt den Cursor in die Eingabezeile, in die Sie eine Formel für die aktuelle Zelle eingeben können." #. hBwvr #: 01020000.xhp @@ -959,7 +959,7 @@ "hd_id3148768\n" "help.text" msgid "Shift+CommandCtrl+F4" -msgstr "Umschalt+BefehlStrg+F4" +msgstr "BefehlStrg+Umschalt+F4" #. AiMqF #: 01020000.xhp @@ -1049,7 +1049,7 @@ "hd_id3150568\n" "help.text" msgid "Shift+CommandCtrl+F5" -msgstr "Umschalt+BefehlStrg+F5" +msgstr "BefehlStrg+Umschalt+F5" #. oTBgR #: 01020000.xhp @@ -1058,7 +1058,7 @@ "par_id3153551\n" "help.text" msgid "Moves the cursor from the Input line to the Sheet area box. You can also use Shift+CommandCtrl+T." -msgstr "Bewegt den Cursor von der Eingabezeile in den Tabellenbereich. Sie können auch [Umschalt+BefehlStrg+T] verwenden." +msgstr "Bewegt den Cursor von der Eingabezeile in den Tabellenbereich. Sie können auch BefehlStrg+Umschalt+T verwenden." #. 6NRwR #: 01020000.xhp @@ -1292,7 +1292,7 @@ "par_id3153155\n" "help.text" msgid "Increases the height of current row (only in OpenOffice.org legacy compatibility mode)." -msgstr "Vergrößert die Höhe der aktuellen Zeile (nur im Kompatibilitätsmodus für veraltete OpenOffice.org Dokumente)." +msgstr "Vergrößert die Höhe der aktuellen Zeile (nur im veralteten OpenOffice.org-Kompatibilitätsmodus)." #. v7V4h #: 01020000.xhp diff -Nru libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/scalc/05.po libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/scalc/05.po --- libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/scalc/05.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/scalc/05.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,8 +4,8 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://bugs.libreoffice.org/enter_bug.cgi?product=LibreOffice&bug_status=UNCONFIRMED&component=UI\n" "POT-Creation-Date: 2020-10-27 12:31+0100\n" -"PO-Revision-Date: 2022-07-01 10:09+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" +"Last-Translator: Annabelle Wübbelsmann \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -140,7 +140,7 @@ "par_id3169267\n" "help.text" msgid "This value is outside of limits valid for this format" -msgstr "Dieser Wert liegt außerhalb der für dieses Format gültigen Grenzen" +msgstr "Dieser Wert liegt außerhalb der für dieses Format gültigen Grenzen." #. ApVjg #: 02140000.xhp @@ -239,7 +239,7 @@ "par_id3149129\n" "help.text" msgid "Missing bracket, for example, closing brackets, but no opening brackets" -msgstr "Es fehlt eine Klammer; es ist beispielsweise eine schließende Klammer vorhanden, aber keine öffnende" +msgstr "Es fehlt eine Klammer; es ist beispielsweise eine schließende Klammer vorhanden, aber keine öffnende." #. iTRKB #: 02140000.xhp @@ -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 @@ -419,7 +419,7 @@ "par_id3149545\n" "help.text" msgid "Variable is not available" -msgstr "Variable ist nicht verfügbar" +msgstr "Variable ist nicht verfügbar." #. 3Ewjd #: 02140000.xhp @@ -617,7 +617,7 @@ "par_id4152967\n" "help.text" msgid "No AddIn" -msgstr "Kein Plug-In" +msgstr "Kein Plug-in" #. zaCCw #: 02140000.xhp @@ -626,7 +626,7 @@ "par_id3149710\n" "help.text" msgid "Interpreter: AddIn not found." -msgstr "Interpreter: Plug-In nicht gefunden." +msgstr "Interpreter: Plug-in nicht gefunden." #. kAqvA #: 02140000.xhp @@ -734,7 +734,7 @@ "par_id881549825900965\n" "help.text" msgid "Happens if a function that requires (re)loading of external sources is encountered and the user hasn't confirmed reloading of external sources yet" -msgstr "Passiert, wenn eine Funktion auftritt, die das (erneute) Laden externer Quellen erfordert und der Benutzer das erneute Laden externer Quellen noch nicht bestätigt hat" +msgstr "Passiert, wenn eine Funktion auftritt, die das (erneute) Laden externer Quellen erfordert und der Benutzer das erneute Laden externer Quellen noch nicht bestätigt hat." #. f9Foc #: empty_cells.xhp diff -Nru libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/scalc/guide.po libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/scalc/guide.po --- libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/scalc/guide.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/scalc/guide.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-08-03 17:46+0000\n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -2741,7 +2741,7 @@ "par_id3151385\n" "help.text" msgid "If you would like to apply a formula to all cells in a selected area, you can use the Find & Replace dialog." -msgstr "Um auf alle Zellen eines ausgewählten Bereichs eine Formel anzuwenden, bietet sich der Dialog Suchen und Ersetzen an." +msgstr "Um auf alle Zellen eines ausgewählten Bereichs eine Formel anzuwenden, bietet sich der Dialog Suchen und ersetzen an." #. qAH7F #: cellstyle_by_formula.xhp @@ -2759,7 +2759,7 @@ "par_id3148797\n" "help.text" msgid "Select the menu command Edit - Find & Replace." -msgstr "Wählen Sie Bearbeiten – Suchen und Ersetzen…." +msgstr "Wählen Sie Bearbeiten – Suchen und ersetzen…." #. STxmA #: cellstyle_by_formula.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 "Wählen Sie Einfügen – Pivot-Tabelle…. Der Dialog Quelle auswählen wird geöffnet. Wählen Sie Aktuelle Auswahl und bestätigen Sie mit OK. Im Dialog Pivot-Tabellen Layout werden die Spaltenköpfe der Tabelle als Schaltflächen angezeigt, die Sie mittels Ziehen-und-Ablegen frei in den Layoutbereichen \"Filter\", \"Spaltenfelder\", \"Zeilenfelder\" und \"Datenfelder\" positionieren können." +msgstr "Wählen Sie Einfügen – Pivot-Tabelle…. Der Dialog Quelle auswählen wird geöffnet. Wählen Sie Aktuelle Auswahl und bestätigen Sie mit OK. Im Dialog Pivot-Tabellen-Layout werden die Spaltenköpfe der Tabelle als Schaltflächen angezeigt, die Sie mittels Ziehen-und-Ablegen frei in den Layoutbereichen \"Filter\", \"Spaltenfelder\", \"Zeilenfelder\" und \"Datenfelder\" positionieren können." #. XR8Sd #: datapilot_createtable.xhp @@ -4766,7 +4766,7 @@ "par_id141525148751543\n" "help.text" msgid "If you delete a pivot table linked to a pivot chart, the pivot chart is also deleted. A dialog box opens to confirm the pivot chart deletion." -msgstr "Wenn Sie eine Pivot-Tabelle löschen, die mit einem Pivot-Diagramm verknüpft ist, wird das Pivot-Diagramm ebenso gelöscht. Ein Dialog wird geöffnet, in der Sie die Löschung des Pivot-Diagrammes bestätigen können." +msgstr "Wenn Sie eine Pivot-Tabelle löschen, die mit einem Pivot-Diagramm verknüpft ist, wird das Pivot-Diagramm ebenso gelöscht. Ein Dialog wird geöffnet, in dem Sie die Löschung des Pivot-Diagramms bestätigen können." #. 9Ft4E #: datapilot_edittable.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 "Im Dialog Pivot-Tabelle Layout können Sie eine Schaltfläche in den Bereich Filter ziehen, um oberhalb der erzeugten Pivot-Tabelle eine Schaltfläche und ein Listenfeld zu erzeugen. Das Listenfeld kann zum Filtern der Pivot-Tabelle nach den Inhalten des ausgewählten Objekts verwendet werden. Sie können Ziehen-und-Ablegen in der erzeugten Pivot-Tabelle verwenden, um ein anderes Seitenfeld als Filter zu verwenden." +msgstr "Im Dialog Pivot-Tabellen-Layout können Sie eine Schaltfläche in den Bereich Filter ziehen, um oberhalb der erzeugten Pivot-Tabelle eine Schaltfläche und ein Listenfeld zu erzeugen. Das Listenfeld kann zum Filtern der Pivot-Tabelle nach den Inhalten des ausgewählten Objekts verwendet werden. Sie können Ziehen-und-Ablegen in der erzeugten Pivot-Tabelle verwenden, um ein anderes Seitenfeld als Filter zu verwenden." #. AeGto #: datapilot_edittable.xhp @@ -5711,7 +5711,7 @@ "tit\n" "help.text" msgid "Finding and Replacing in Calc" -msgstr "Suchen und Ersetzen in Calc" +msgstr "Suchen und ersetzen in Calc" #. qSAcB #: finding.xhp @@ -5729,7 +5729,7 @@ "hd_id3149204\n" "help.text" msgid "Finding and Replacing in Calc" -msgstr "Suchen und Ersetzen in Calc" +msgstr "Suchen und ersetzen in Calc" #. uzefv #: finding.xhp @@ -5747,7 +5747,7 @@ "hd_id3610644\n" "help.text" msgid "The Find & Replace dialog" -msgstr "Der Dialog Suchen und Ersetzen" +msgstr "Der Dialog „Suchen und ersetzen“" #. iACsJ #: finding.xhp @@ -5774,7 +5774,7 @@ "par_id2569658\n" "help.text" msgid "You can specify in the Find & Replace dialog either to find the parts of a formula or the results of a calculation." -msgstr "Im Dialog Suchen und Ersetzen können Sie angeben, ob entweder die Teile einer Formel oder die Ergebnisse einer Berechnung gesucht werden sollen." +msgstr "Im Dialog „Suchen und ersetzen“ können Sie angeben, ob entweder die Teile einer Formel oder die Ergebnisse einer Berechnung gesucht werden sollen." #. C6cDQ #: finding.xhp @@ -5783,7 +5783,7 @@ "par_id6394238\n" "help.text" msgid "Choose Edit - Find & Replace to open the Find & Replace dialog." -msgstr "Wählen Sie Bearbeiten – Suchen und Ersetzen…, um den Dialog Suchen und Ersetzen zu öffnen." +msgstr "Wählen Sie Bearbeiten – Suchen und ersetzen…, um den Dialog „Suchen und ersetzen“ zu öffnen." #. cAUtG #: finding.xhp @@ -5792,7 +5792,7 @@ "par_id7214270\n" "help.text" msgid "Click More Options to expand the dialog." -msgstr "Klicken Sie auf Mehr Optionen, um den Dialog zu erweitern." +msgstr "Klicken Sie auf Weitere Optionen, um den Dialog zu erweitern." #. wX8ZD #: finding.xhp @@ -5846,7 +5846,7 @@ "par_id6549272\n" "help.text" msgid "Choose Edit - Find & Replace to open the Find & Replace dialog." -msgstr "Wählen Sie Bearbeiten – Suchen und Ersetzen…, um den Dialog Suchen und Ersetzen zu öffnen." +msgstr "Wählen Sie Bearbeiten – Suchen und ersetzen…, um den Dialog „Suchen und ersetzen“ zu öffnen." #. 5DY4k #: finding.xhp @@ -7376,7 +7376,7 @@ "par_id3154944\n" "help.text" msgid "Choose Edit - Find & Replace" -msgstr "Wählen Sie Bearbeiten – Suchen und Ersetzen…" +msgstr "Wählen Sie Bearbeiten – Suchen und ersetzen…" #. MJUjm #: integer_leading_zero.xhp @@ -7421,7 +7421,7 @@ "par_id3146916\n" "help.text" msgid "Click Replace All" -msgstr "Klicken Sie auf Ersetze alle" +msgstr "Klicken Sie auf Alle ersetzen" #. MSHQ3 #: keyboard.xhp @@ -8168,7 +8168,7 @@ "par_id3150716\n" "help.text" msgid "End the input with the matrix key combination: Shift+CommandCtrl+Enter." -msgstr "Schließen Sie die Eingabe mit Umschalt+BefehlStrg+Eingabetaste ab." +msgstr "Schließen Sie die Eingabe mit BefehlStrg+Umschalt+Eingabetaste ab." #. D8QXG #: matrixformula.xhp @@ -8348,7 +8348,7 @@ "par_id2805566\n" "help.text" msgid "CommandCtrl+Shift keys" -msgstr "Option+BefehlAlt+Strg+Umschalt" +msgstr "Option+BefehlStrg+Alt+Umschalt" #. HMLtJ #: move_dragdrop.xhp @@ -8393,7 +8393,7 @@ "par_id2783898\n" "help.text" msgid "Option+Command Alt+Ctrl keys" -msgstr "Option+BefehlAlt+Strg" +msgstr "Option+BefehlStrg+Alt" #. FAxCD #: move_dragdrop.xhp @@ -8411,7 +8411,7 @@ "par_id584124\n" "help.text" msgid "Option+CommandAlt+Ctrl+Shift keys" -msgstr "Option+BefehlAlt+Strg+Umschalt" +msgstr "Option+BefehlStrg+Alt+Umschalt" #. VpQTf #: move_dragdrop.xhp @@ -8924,7 +8924,7 @@ "par_idN106B7\n" "help.text" msgid "You can use Shift+CommandCtrl+Page Up or Page Down to select multiple sheets using the keyboard." -msgstr "Sie können Umschalt+BefehlStrg+Bild nach oben/unten verwenden, um mehrere Tabellen mit der Tastatur auszuwählen." +msgstr "Sie können BefehlStrg+Umschalt+Bild nach oben/unten verwenden, um mehrere Tabellen mit der Tastatur auszuwählen." #. LHpti #: multitables.xhp @@ -9023,7 +9023,7 @@ "par_id3149958\n" "help.text" msgid "To edit a permanently visible comment, just click in it. If you delete the entire text of the comment, the comment itself is deleted." -msgstr "Einen ständig sichtbaren Kommentar bearbeiten Sie, indem Sie einfach hinein klicken. Wenn Sie den ganzen Text des Kommentars löschen, wird der Kommentar gelöscht." +msgstr "Einen ständig sichtbaren Kommentar bearbeiten Sie, indem Sie einfach hineinklicken. Wenn Sie den ganzen Text des Kommentars löschen, wird auch der Kommentar selbst gelöscht." #. hWoCg #: note_insert.xhp @@ -9545,7 +9545,7 @@ "par_id141525148751543\n" "help.text" msgid "If you delete a pivot table linked to a pivot chart, the pivot chart is also deleted. A dialog box opens to confirm the pivot chart deletion." -msgstr "Wenn Sie eine Pivot-Tabelle löschen, die mit einem Pivot-Diagramm verknüpft ist, wird das Pivot-Diagramm ebenso gelöscht. Ein Dialog wird geöffnet, in der Sie die Löschung des Pivot-Diagrammes bestätigen können." +msgstr "Wenn Sie eine Pivot-Tabelle löschen, die mit einem Pivot-Diagramm verknüpft ist, wird das Pivot-Diagramm ebenso gelöscht. Ein Dialog wird geöffnet, in dem Sie die Löschung des Pivot-Diagramms bestätigen können." #. KEqLt #: pivotchart_edit.xhp @@ -13280,7 +13280,7 @@ "par_id3150749\n" "help.text" msgid "If more than one name starts with the same characters, you can scroll forward through all the names using the CommandCtrl + Tab keys and backward using the Shift + CommandCtrl + Tab keys." -msgstr "Wenn mehr als ein Name mit dem selben Buchstaben beginnt, können Sie sich vorwärts durch alle Namen bewegen, indem Sie BefehlStrg +Tabulator verwenden beziehungsweise Umschalt+ BefehlStrg +Tabulator, um sich rückwärts durch die Namen zu bewegen." +msgstr "Wenn mehr als ein Name mit dem selben Buchstaben beginnt, können Sie sich vorwärts durch alle Namen bewegen, indem Sie BefehlStrg +Tabulator verwenden beziehungsweise BefehlStrg +Umschalt+Tabulator, um sich rückwärts durch die Namen zu bewegen." #. VDbbB #: value_with_name.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 "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." +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 diff -Nru libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/scalc.po libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/scalc.po --- libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/scalc.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/scalc.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-02-11 10:37+0000\n" +"PO-Revision-Date: 2022-10-13 10:17+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: 1513085807.000000\n" #. ZxQeC @@ -419,7 +419,7 @@ "par_id391577296078546\n" "help.text" msgid "Opens a submenu for selecting the date, sheet name or document title in the cell." -msgstr "Öffnet ein Untermenü, in welchem Sie Datum, Tabellenname oder Dokumenttitel zum Einfügen in die Zelle auswählen können." +msgstr "Öffnet ein Untermenü, in dem Sie Datum, Tabellenname oder Dokumenttitel zum Einfügen in die Zelle auswählen können." #. JP4tR #: main0105.xhp diff -Nru libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/schart/01.po libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/schart/01.po --- libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/schart/01.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/schart/01.po 2022-10-27 10:11:14.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: Christian Kühl \n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" +"Last-Translator: Annabelle Wübbelsmann \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.11.2\n" +"X-Generator: Weblate 4.12.2\n" "X-POOTLE-MTIME: 1565410144.000000\n" #. DsZFP @@ -689,7 +689,7 @@ "par_id3154684\n" "help.text" msgid "Opens the Data Labels dialog, which enables you to set the data labels." -msgstr "Öffnet den Dialog Datenbeschriftung, in welchem Sie das Aussehen der Datenbeschriftung festlegen." +msgstr "Öffnet den Dialog Datenbeschriftung, in dem Sie das Aussehen der Datenbeschriftung festlegen." #. EwAhi #: 04030000.xhp @@ -7025,7 +7025,7 @@ "par_id1911679\n" "help.text" msgid "Based on open, low, high, and close column Type 2 generates the traditional \"candle stick\" chart. Type 2 draws the vertical line between the bottom and top price and adds a rectangle in front, which visualizes the range between the opening and closing price. If you click on the rectangle you see more information in the status bar. %PRODUCTNAME uses different fill colors for rising values (the opening price is lower than the closing price) and falling values." -msgstr "Bei Typ 2 wird basierend auf den Spalten mit den Eröffnungs-, Tiefst-, Höchst- und Schlusswerten ein so genanntes \"Candlestick-Chart\" (auch \"Kerzendiagramm\") erstellt. In einem Diagramm des Typs 2 wird eine vertikale Linie zwischen den Tiefst- und Höchstwerten gezeichnet und mit einem davor gestellten Rechteck wird die Differenz zwischen Eröffnungs- und Schlusswert dargestellt. Zudem werden in %PRODUCTNAME steigende Werte (Kursanstiege) (Eröffungswert niedriger als Schlusswert) und fallende Werte (Kursverluste) durch unterschiedliche Füllfarben verdeutlicht." +msgstr "Bei Typ 2 wird basierend auf den Spalten mit den Eröffnungs-, Tiefst-, Höchst- und Schlusswerten ein sogenanntes \"Candlestick-Chart\" (auch \"Kerzendiagramm\") erstellt. In einem Diagramm des Typs 2 wird eine vertikale Linie zwischen den Tiefst- und Höchstwerten gezeichnet und mit einem davorgestellten Rechteck wird die Differenz zwischen Eröffnungs- und Schlusswert dargestellt. Zudem werden in %PRODUCTNAME steigende Werte (Kursanstiege) (Eröffnungswert niedriger als Schlusswert) und fallende Werte (Kursverluste) durch unterschiedliche Füllfarben verdeutlicht." #. 8FqfW #: type_stock.xhp diff -Nru libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/schart/04.po libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/schart/04.po --- libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/schart/04.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/schart/04.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-15 05:23+0000\n" -"Last-Translator: Christian Kühl \n" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2022-10-27 08:40+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" +"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: 1529040217.000000\n" #. XTsp4 @@ -203,7 +203,7 @@ "hd_id3150364\n" "help.text" msgid "up/down/left/right arrow in pie charts" -msgstr "Pfeil nach oben/unten/links/rechts) bei Kreisdiagrammen" +msgstr "Pfeil nach oben/unten/links/rechts bei Kreisdiagrammen" #. d2pzL #: 01020000.xhp @@ -303,4 +303,3 @@ "help.text" msgid "Moves the selected pie segment off or into the pie chart." msgstr "Schiebt das ausgewählte Kreissegment in das Tortendiagramm oder nimmt es heraus." - diff -Nru libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/sdatabase.po libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/sdatabase.po --- libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/sdatabase.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/sdatabase.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "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-08-31 13:59+0000\n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -2839,7 +2839,7 @@ "hd_id3157910\n" "help.text" msgid "FormWizard" -msgstr "Formular-Assistent" +msgstr "Formularassistent" #. GDZow #: 04000000.xhp @@ -2947,7 +2947,7 @@ "par_id3145382\n" "help.text" msgid "Open the Form Controls toolbar. The Form Controls toolbar contains the functions needed to edit a form. More functions can be found in the Form Design bar and More Controls bar." -msgstr "Öffnen Sie die Symbolleiste Formular-Steuerelemente. Die Symbolleiste Formular-Steuerelemente enthält die Funktionen, die Sie zum Bearbeiten eines Formular benötigen. Weiter Funktionen befinden sich in den Leisten Formular-Entwurf und Weitere Steuerelemente." +msgstr "Öffnen Sie die Symbolleiste Formular-Steuerelemente. Die Symbolleiste Formular-Steuerelemente enthält die Funktionen, die Sie zum Bearbeiten eines Formular benötigen. Weiter Funktionen befinden sich in den Symbolleisten Formularentwurf und Weitere Steuerelemente." #. 8SrEX #: 04030000.xhp @@ -2965,7 +2965,7 @@ "par_id3154924\n" "help.text" msgid "The Form Navigator iconIcon on the Form Design bar opens the Form Navigator." -msgstr "Das Symbol Formular-Navigator Symbol für Formular-Navigator auf der Symbolleiste Formular-Entwurf öffnet den Formular-Navigator." +msgstr "Das Symbol Formularnavigator Symbol für Formularnavigator auf der Symbolleiste Formularentwurf öffnet den Formularnavigator." #. 5wdwF #: 04030000.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 "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:" +msgstr "Geben Sie den SQL-Befehlsbezeichner ein, der die Datenquelle anweist, ein angegebenes Integer-Datenfeld automatisch zu inkrementieren. Eine typische SQL-Anweisung zum Erstellen eines Datenfelds ist beispielsweise:" #. C5Mvn #: 11020000.xhp @@ -8653,7 +8653,7 @@ "hd_id171587405349438\n" "help.text" msgid "Port number" -msgstr "Port-Nummer" +msgstr "Portnummer" #. J2SR3 #: dabawiz02mysql.xhp @@ -9013,7 +9013,7 @@ "par_idN10616\n" "help.text" msgid "Port number" -msgstr "Port-Nummer" +msgstr "Portnummer" #. PBuEW #: dabawiz02oracle.xhp @@ -9238,7 +9238,7 @@ "par_idN1061A\n" "help.text" msgid "Click to access txt files." -msgstr "Klicken Sie hier, um auf txt-Dateien zuzugreifen." +msgstr "Klicken Sie hier, um auf TXT-Dateien zuzugreifen." #. E5S76 #: dabawiz02text.xhp @@ -9256,7 +9256,7 @@ "par_idN10647\n" "help.text" msgid "Click to access csv files." -msgstr "Klicken Sie hier, um auf csv-Dateien zuzugreifen." +msgstr "Klicken Sie hier, um auf CSV-Dateien zuzugreifen." #. EVBCK #: dabawiz02text.xhp @@ -9706,7 +9706,7 @@ "par_id3147209\n" "help.text" msgid "Opens a window where you can edit the selected table, query, form, or report." -msgstr "Öffnet ein Fenster, in dem Sie die ausgewählte Tabelle, Abfrage, das Formular oder den Bericht bearbeiten können." +msgstr "Öffnet ein Fenster, in dem Sie die ausgewählte Tabelle, die Abfrage, das Formular oder den Bericht bearbeiten können." #. NCnUw #: menuedit.xhp @@ -9724,7 +9724,7 @@ "par_id3153666\n" "help.text" msgid "Deletes the selected table, query, form, or report." -msgstr "Löscht die ausgewählte Tabelle, Abfrage, das Formular oder den Bericht." +msgstr "Löscht die ausgewählte Tabelle, die Abfrage, das Formular oder den Bericht." #. uuDM2 #: menuedit.xhp @@ -9787,7 +9787,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 "Die meisten Datenbanken verwenden Abfragen, um Datenbanktabellen zu filtern oder zu sortieren, um Datensätze auf Ihrem Computer anzuzeigen. Ansichten bieten dieselbe Funktionalität wie Abfragen, jedoch serverseitig. Wenn sich Ihre Datenbank auf einem Server befindet, der Ansichten unterstützt, können Sie Ansichten verwenden, um die Datensätze auf dem Server zu filtern, um die Anzeigezeit zu verkürzen." +msgstr "Die meisten Datenbanken verwenden Abfragen zum Filtern oder Sortieren von Datenbanktabellen, um Datensätze auf Ihrem Computer anzuzeigen. Ansichten bieten dieselbe Funktionalität wie Abfragen, jedoch serverseitig. Wenn sich Ihre Datenbank auf einem Server befindet, der Ansichten unterstützt, können Sie Ansichten zum Filtern der Datensätze auf dem Server verwenden, um die Anzeigezeit zu verkürzen." #. 7NDGC #: menuedit.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 "Speichert die aktuelle Datenbankdatei, Abfrage, das Formular oder den Bericht. Für die Datenbankdatei sehen Sie den Dialog Datei speichern. Für die anderen Objekte sehen Sie den Dialog Speichern." +msgstr "Speichert die aktuelle Datenbankdatei, die Abfrage, das Formular oder den Bericht. Für die Datenbankdatei sehen Sie den Dialog Datei speichern. Für die anderen Objekte sehen Sie den Dialog Speichern." #. FAvuD #: menufile.xhp @@ -11362,7 +11362,7 @@ "par_idN105EA\n" "help.text" msgid "Select the catalog for the table. (Available only if the database supports catalogs)" -msgstr "Wählen Sie den Katalog für die Tabelle aus. (Nur verfügbar, wenn die Datenbank Kataloge unterstützt)" +msgstr "Wählen Sie den Katalog für die Tabelle aus. (Nur verfügbar, wenn die Datenbank Kataloge unterstützt.)" #. 2ADuK #: tablewizard04.xhp @@ -11380,7 +11380,7 @@ "par_idN1060B\n" "help.text" msgid "Select the schema for the table. (Available only if the database supports schemas)" -msgstr "Wählen Sie das Schema für die Tabelle aus. (Nur verfügbar, wenn die Datenbank Schemata unterstützt)" +msgstr "Wählen Sie das Schema für die Tabelle aus. (Nur verfügbar, wenn die Datenbank Schemata unterstützt.)" #. DEPmh #: tablewizard04.xhp @@ -11434,7 +11434,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 "Wählen Sie diese Option aus, um ein Formular basierend auf dieser Tabelle zu erstellen. Das Formular wird auf einem Textdokument mit den zuletzt verwendeten Einstellungen des Formularassistenten erstellt." +msgstr "Wählen Sie diese Option, um ein Formular basierend auf dieser Tabelle zu erstellen. Das Formular wird in einem Textdokument mit den zuletzt verwendeten Einstellungen des Formularassistenten erstellt." #. wHGrL #: tablewizard04.xhp diff -Nru libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/sdraw/04.po libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/sdraw/04.po --- libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/sdraw/04.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/sdraw/04.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,16 +4,16 @@ "Project-Id-Version: PACKAGE 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-08 14:38+0000\n" -"Last-Translator: Christian Kühl \n" -"Language-Team: German \n" +"PO-Revision-Date: 2022-10-27 08:40+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: 1532496289.000000\n" #. XCKCk @@ -401,7 +401,7 @@ "hd_id3150867\n" "help.text" msgid "CommandCtrl+Shift+G" -msgstr "BefehlStrg +Umschalt+G" +msgstr "BefehlStrg+Umschalt+G" #. xdhfv #: 01020000.xhp @@ -419,7 +419,7 @@ "hd_id3149955\n" "help.text" msgid "Shift+Command+OptionCtrl+Alt+A" -msgstr "Umschalt+Befehl+OptionStrg+Alt +A" +msgstr "Befehl+OptionStrg+Alt+Umschalt+A" #. Vpa4M #: 01020000.xhp @@ -437,7 +437,7 @@ "hd_id3146852\n" "help.text" msgid "CommandCtrl+Shift+K" -msgstr "Befehl Strg +Umschalt+K" +msgstr "Befehl Strg+Umschalt+K" #. CCwzy #: 01020000.xhp @@ -455,7 +455,7 @@ "hd_id3153567\n" "help.text" msgid "Command+OptionCtrl+Alt+Shift+K" -msgstr "Befehl+OptionStrg+Alt +Umschalt+K" +msgstr "Befehl+OptionStrg+Alt+Umschalt+K" #. gscGJ #: 01020000.xhp @@ -473,7 +473,7 @@ "hd_id3153730\n" "help.text" msgid "CommandCtrl+Shift+ +" -msgstr "Befehl Strg +Umschalt+ +" +msgstr "BefehlStrg+Umschalt+Plus" #. rXBFC #: 01020000.xhp @@ -491,7 +491,7 @@ "hd_id3145245\n" "help.text" msgid "CommandCtrl+ +" -msgstr "BefehlStrg+ +" +msgstr "BefehlStrg+Plus" #. XXV5X #: 01020000.xhp @@ -509,7 +509,7 @@ "hd_id3150928\n" "help.text" msgid "CommandCtrl+ -" -msgstr "BefehlStrg +Minus (-)" +msgstr "BefehlStrg+Minus" #. xs2NW #: 01020000.xhp @@ -527,7 +527,7 @@ "hd_id3145298\n" "help.text" msgid "CommandCtrl+Shift+ -" -msgstr "BefehlStrg +Umschalt+Minus (-)" +msgstr "BefehlStrg+Umschalt+Minus" #. ECARZ #: 01020000.xhp @@ -608,7 +608,7 @@ "par_idN10AED\n" "help.text" msgid "CommandCtrl+Page Up" -msgstr "BefehlStrg +Bild nach oben" +msgstr "BefehlStrg+Bild nach oben" #. qH8YG #: 01020000.xhp @@ -626,7 +626,7 @@ "par_idN10AF8\n" "help.text" msgid "CommandCtrl+Page Down" -msgstr "BefehlStrg +Bild nach unten" +msgstr "BefehlStrg+Bild nach unten" #. hTrtc #: 01020000.xhp @@ -662,7 +662,7 @@ "hd_id3156259\n" "help.text" msgid "CommandCtrl+Arrow Key" -msgstr "BefehlStrg +Pfeiltasten" +msgstr "BefehlStrg+Pfeiltasten" #. 8G82c #: 01020000.xhp @@ -680,7 +680,7 @@ "hd_id3152484\n" "help.text" msgid "CommandCtrl-click while dragging an object. Note: this shortcut key works only when the Copy when moving option in %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Draw - General is enabled (it is enabled by default)." -msgstr "Halten Sie BefehlStrg beim Ziehen am Objekt gedrückt. Hinweis: Sie müssen erst die Option Kopieren beim Bewegen unter %PRODUCTNAME – EinstellungenExtras – Optionen… – %PRODUCTNAME Draw – Allgemein aktivieren, um diese Tastenkombination nutzen zu können." +msgstr "Halten Sie BefehlStrg beim Ziehen am Objekt gedrückt. Hinweis: Sie müssen erst die Option Kopie beim Verschieben unter %PRODUCTNAME – EinstellungenExtras – Optionen… – %PRODUCTNAME Draw – Allgemein aktivieren, um diese Tastenkombination nutzen zu können." #. KVYGa #: 01020000.xhp @@ -743,7 +743,7 @@ "par_id3156323\n" "help.text" msgid "Enters text mode." -msgstr "Ist ein Text-fähiges Objekt gewählt, wird der Texteingabemodus aktiviert." +msgstr "Ist ein textfähiges Objekt ausgewählt, wird der Texteingabemodus aktiviert." #. jVnMA #: 01020000.xhp @@ -761,7 +761,7 @@ "par_id3150258\n" "help.text" msgid "Enters text mode if a text object is selected." -msgstr "Ist ein Text-fähiges Objekt gewählt, wird der Texteingabemodus aktiviert." +msgstr "Ist ein textfähiges Objekt ausgewählt, wird der Texteingabemodus aktiviert." #. qtjRB #: 01020000.xhp @@ -770,7 +770,7 @@ "hd_id3155851\n" "help.text" msgid "CommandCtrl+Enter" -msgstr "BefehlStrg +Eingabetaste" +msgstr "BefehlStrg+Eingabetaste" #. 2HVcw #: 01020000.xhp @@ -779,7 +779,7 @@ "par_id3154046\n" "help.text" msgid "Enters text mode if a text object is selected. If there are no text objects or if you have cycled through all of the text objects on the page, a new page is inserted." -msgstr "Ist ein Text-fähiges Objekt gewählt, wird der Texteingabemodus aktiviert. Ist das letzte Text-fähige Objekt erreicht, wird eine Kopie der aktuellen Seite angelegt. Ist kein Text-fähiges Objekt auszuwählen, wird eine Kopie der aktuellen Seite angelegt." +msgstr "Ist ein textfähiges Objekt ausgewählt, wird der Texteingabemodus aktiviert. Ist das letzte textfähige Objekt erreicht, wird eine Kopie der aktuellen Seite angelegt. Ist kein textfähiges Objekt ausgewählt, wird eine Kopie der aktuellen Seite angelegt." #. 5MSC7 #: 01020000.xhp @@ -788,7 +788,7 @@ "hd_id3149977\n" "help.text" msgid "OptionAlt" -msgstr "OptionAlt " +msgstr "OptionAlt" #. 9QSpM #: 01020000.xhp @@ -824,7 +824,7 @@ "hd_id3147252\n" "help.text" msgid "OptionAlt+Shift+click an object" -msgstr "OptionAlt +Umschalt und Mausklick auf ein Objekt" +msgstr "OptionAlt+Umschalt und Mausklick auf ein Objekt" #. HKrSi #: 01020000.xhp @@ -842,7 +842,7 @@ "hd_id3155325\n" "help.text" msgid "Shift key while selecting an object" -msgstr "Umschalt beim Markieren eines Objektes" +msgstr "Umschalt beim Markieren eines Objekts" #. hEPFb #: 01020000.xhp diff -Nru libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/sdraw/guide.po libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/sdraw/guide.po --- libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/sdraw/guide.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/sdraw/guide.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\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-14 05:38+0000\n" +"PO-Revision-Date: 2022-10-13 10:18+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: 1552452870.000000\n" #. cZbDh @@ -2696,7 +2696,7 @@ "par_id3166424\n" "help.text" msgid "To change the pivot point, drag the small circle in the center of the object to a new location." -msgstr "Klicken Sie noch einmal in das Objekt, sehen Sie wieder die normalen acht Griffe. Wenn Sie aber doppelt hinein klicken, verändern sich die acht Griffe und Sie sehen einen Textcursor in der Mitte des Objekts. Sie können jetzt einen Text eingeben, der automatisch mit dem Objekt verbunden ist." +msgstr "Klicken Sie noch einmal in das Objekt, sehen Sie wieder die normalen acht Griffe. Wenn Sie aber doppelt hineinklicken, verändern sich die acht Griffe und Sie sehen einen Textcursor in der Mitte des Objekts. Sie können jetzt einen Text eingeben, der automatisch mit dem Objekt verbunden ist." #. 7Sjf8 #: rotate_object.xhp diff -Nru libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/sdraw.po libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/sdraw.po --- libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/sdraw.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/sdraw.po 2022-10-27 10:11:14.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-02-11 10:37+0000\n" -"Last-Translator: Christian Kühl \n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" +"Last-Translator: Annabelle Wübbelsmann \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: 1557806579.000000\n" #. dHbww @@ -113,7 +113,7 @@ "tit\n" "help.text" msgid "View (menu in Draw)" -msgstr "Ansicht (Menü in Draw)" +msgstr "Ansicht" #. hWYJ3 #: main0103.xhp @@ -797,7 +797,7 @@ "hd_id3149400\n" "help.text" msgid "Find & Replace" -msgstr "Suchen und Ersetzen" +msgstr "Suchen und ersetzen" #. EDbMF #: main_edit.xhp diff -Nru libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/shared/00.po libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/shared/00.po --- libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/shared/00.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/shared/00.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: https://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-07-01 10:09+0000\n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -1058,7 +1058,7 @@ "par_id3153178\n" "help.text" msgid "There are two different types of ImageMaps. A Client Side ImageMap is evaluated on the client computer, which loaded the graphic from the Internet, while a Server Side ImageMap is evaluated on the server computer which provides the HTML page on the Internet. In server evaluation, clicking an ImageMap sends the relative coordinates of the cursor within the image to the server, and a dedicated program on the server responds. In the client evaluation, clicking a defined hotspot of the ImageMap activates the URL, as if it were a normal text link. The URL appears below the mouse pointer when passing across the ImageMap." -msgstr "Es werden zwei Typen von verweissensitiven Grafiken unterschieden. Eine Client-seitige verweissensitive Grafik wird auf dem Client-Computer ausgewertet, der die Grafik aus dem Internet heruntergeladen hat. Dagegen wird eine Server-seitige verweissensitive Grafik auf dem Server ausgewertet, der die HTML-Seite im Internet bereitstellt. Bei Server-seitiger Auswertung werden durch Klicken auf die verweissensitive Grafik die entsprechenden Cursor-Koordinaten im Bild an den Server gesendet und ein spezielles Programm auf dem Server reagiert darauf. Bei der Auswertung durch den Client wird durch Klicken auf einen definierten Hotspot in der verweissensitive Grafik wie bei einem normalen Texthyperlink eine URL aktiviert. Wenn Sie die Maus über die verweissensitive Grafik führen, werden die jeweiligen URLs unter dem Mauszeiger eingeblendet." +msgstr "Es werden zwei Typen von verweissensitiven Grafiken unterschieden. Eine clientseitige verweissensitive Grafik wird auf dem Client-Computer ausgewertet, der die Grafik aus dem Internet heruntergeladen hat. Dagegen wird eine serverseitige verweissensitive Grafik auf dem Server ausgewertet, der die HTML-Seite im Internet bereitstellt. Bei serverseitiger Auswertung werden durch Klicken auf die verweissensitive Grafik die entsprechenden Cursor-Koordinaten im Bild an den Server gesendet und ein spezielles Programm auf dem Server reagiert darauf. Bei der Auswertung durch den Client wird durch Klicken auf einen definierten Hotspot in der verweissensitive Grafik wie bei einem normalen Texthyperlink eine URL aktiviert. Wenn Sie die Maus über die verweissensitive Grafik führen, werden die jeweiligen URLs unter dem Mauszeiger eingeblendet." #. Tk4uc #: 00000002.xhp @@ -1103,7 +1103,7 @@ "hd_id3152881\n" "help.text" msgid "Server Side ImageMaps" -msgstr "Server-seitige verweissensitive Grafik" +msgstr "Serverseitige verweissensitive Grafik" #. E6FbV #: 00000002.xhp @@ -1112,7 +1112,7 @@ "par_id3153057\n" "help.text" msgid "Server Side ImageMaps appear for the reader as a picture or frame on the page. Click on the ImageMap with the mouse, and the coordinates of the relative position are sent to the server. Aided by an extra program, the server then determines the next step to take. There are several incompatible methods to define this process, the two most common being:" -msgstr "Server-seitige verweissensitive Grafiken zeigen sich dem Leser als Bild oder Rahmen auf einer Seite. Klicken Sie mit der Maus auf die verweissensitive Grafik und die Koordinaten der relativen Position werden an den Server gesendet. Mithilfe eines speziellen Programms stellt der Server dann fest, welcher Schritt als nächstes vorzunehmen ist. Es gibt verschiedene untereinander inkompatible Methoden der Definition dieses Prozesses. Die am weitesten verbreiteten sind:" +msgstr "Serverseitige verweissensitive Grafiken zeigen sich dem Leser als Bild oder Rahmen auf einer Seite. Klicken Sie mit der Maus auf die verweissensitive Grafik und die Koordinaten der relativen Position werden an den Server gesendet. Mithilfe eines speziellen Programms stellt der Server dann fest, welcher Schritt als nächstes vorzunehmen ist. Es gibt verschiedene untereinander inkompatible Methoden der Definition dieses Prozesses. Die am weitesten verbreiteten sind:" #. JqMm2 #: 00000002.xhp @@ -1157,7 +1157,7 @@ "hd_id3152418\n" "help.text" msgid "Client Side ImageMap" -msgstr "Client-seitige verweissensitive Grafik" +msgstr "Clientseitige verweissensitive Grafik" #. DKeXA #: 00000002.xhp @@ -1166,7 +1166,7 @@ "par_id3151290\n" "help.text" msgid "The area of the picture or frame where the reader can click is indicated by the appearance of the linked URL when the mouse passes over the area. The ImageMap is stored in a layer below the picture and contains information about the referenced regions. The only disadvantage of Client Side ImageMaps is that older Web browsers cannot read them; a disadvantage that will, however, resolve itself in time." -msgstr "Der klickbare Bereich des Bildes oder Rahmens wird beim Drüberfahren mit der Maus kenntlich gemacht, indem die verknüpfte URL eingeblendet wird. Die verweissensitive Grafik ist in einer Ebene unterhalb des Bildes gespeichert und enthält Informationen über die referenzierten Bereiche. Der einzige Nachteil von Client-seitigen verweissensitive Grafiken besteht darin, dass ältere Webbrowser sie nicht lesen können; ein Nachteil, der mit der Zeit jedoch automatisch wegfällt." +msgstr "Der klickbare Bereich des Bildes oder Rahmens wird beim Drüberfahren mit der Maus kenntlich gemacht, indem die verknüpfte URL eingeblendet wird. Die verweissensitive Grafik ist in einer Ebene unterhalb des Bildes gespeichert und enthält Informationen über die referenzierten Bereiche. Der einzige Nachteil von clientseitigen verweissensitive Grafiken besteht darin, dass ältere Webbrowser sie nicht lesen können; ein Nachteil, der mit der Zeit jedoch automatisch wegfällt." #. kB898 #: 00000002.xhp @@ -1175,7 +1175,7 @@ "par_id3149664\n" "help.text" msgid "When saving the ImageMap, select the file type SIP - StarView ImageMap. This saves the ImageMap directly in a format which can be applied to every active picture or frame in your document. However, if you just want to use the ImageMap on the current picture or frame, you do not have to save it in any special format. After defining the regions, simply click Apply. Nothing more is necessary. Client Side ImageMaps saved in HTML format are inserted directly into the page in HTML code." -msgstr "Wählen Sie beim Speichern der Verweissensitiven Grafik den Dateityp SIP – StarView ImageMap. Dadurch wird die Verweissensitive Grafik direkt in einem Format gespeichert, das auf jedes aktive Bild oder jeden aktiven Rahme in Ihrem Dokument angewendet werden kann. Wenn Sie die Verweissensitive Grafik jedoch nur für das aktuelle Bild oder den aktuellen Rahmen verwenden möchten, müssen Sie sie nicht in einem speziellen Format speichern. Klicken Sie nach dem Definieren der Regionen einfach auf Übernehmen. Mehr ist nicht nötig. Client-seitige verweissensitive Grafiken, die im HTML-Format gespeichert sind, werden im HTML-Code direkt in die Seite eingefügt." +msgstr "Wählen Sie beim Speichern der verweissensitiven Grafik den Dateityp SIP – StarView ImageMap. Dadurch wird die verweissensitive Grafik direkt in einem Format gespeichert, das auf jedes aktive Bild oder jeden aktiven Rahmen in Ihrem Dokument angewendet werden kann. Wenn Sie die verweissensitive Grafik jedoch nur für das aktuelle Bild oder den aktuellen Rahmen verwenden möchten, müssen Sie sie nicht in einem speziellen Format speichern. Klicken Sie nach dem Definieren der Regionen einfach auf Übernehmen. Mehr ist nicht nötig. Clientseitige verweissensitive Grafiken, die im HTML-Format gespeichert sind, werden im HTML-Code direkt in die Seite eingefügt." #. JCSdG #: 00000002.xhp @@ -3380,7 +3380,7 @@ "bm_id3152952\n" "help.text" msgid "import filtersexport filtersfilters; for import and exportfiles; filters and formatsformats; on opening and savingimporting; HTML and text documentsexporting;HTML and text documentstext documents; importing/exportingHTML documents; importing/exportingUTF-8/UCS2 supportHTML; export character setPostScript; creating filesexporting;to PostScript format" -msgstr "ImportfilterExportfilterFilter; für Im- und ExportDateien; Filter und FormateFormate; beim Öffnen und SpeichernImportieren; HTML- und TextdokumenteExportieren; HTML- und TextdokumenteTextdokumente; Importieren und ExportierenHTML-Dokumente; Importieren und ExportierenUTF-8/UCS2-UnterstützungHTML; Export-ZeichensatzPostScript; Dateien erstellenExportieren; in das PostScript-Format" +msgstr "ImportfilterExportfilterFilter; für Im- und ExportDateien; Filter und FormateFormate; beim Öffnen und SpeichernImportieren; HTML- und TextdokumenteExportieren; HTML- und TextdokumenteTextdokumente; Importieren und ExportierenHTML-Dokumente; Importieren und ExportierenUTF-8/UCS-2-UnterstützungHTML; Export-ZeichensatzPostScript; Dateien erstellenExportieren; in das PostScript-Format" #. MZo3K #: 00000020.xhp @@ -3533,7 +3533,7 @@ "par_id3149734\n" "help.text" msgid "The HTML import of $[officename] Writer is able to read files that have UTF-8 or UCS2 character coding. All characters that are contained in the ANSI character set or in the system's character set can be displayed." -msgstr "Der HTML-Import des $[officename] Writer ist in der Lage, Dateien zu lesen, die in der UTF-8- beziehungsweise UCS2-Zeichencodierung vorliegen. Dabei werden alle Zeichen dargestellt, die sich im ANSI-Zeichensatz beziehungsweise im Zeichensatz des Systems befinden." +msgstr "Der HTML-Import des $[officename] Writer ist in der Lage, Dateien zu lesen, die in der UTF-8- beziehungsweise UCS-2-Zeichencodierung vorliegen. Dabei werden alle Zeichen dargestellt, die sich im ANSI-Zeichensatz beziehungsweise im Zeichensatz des Systems befinden." #. EKQe3 #: 00000020.xhp @@ -4271,7 +4271,7 @@ "par_id9756157\n" "help.text" msgid "%PRODUCTNAME Extension" -msgstr "%PRODUCTNAME Extension" +msgstr "%PRODUCTNAME-Extension" #. vrtDD #: 00000021.xhp @@ -4370,7 +4370,7 @@ "par_id0519200811530455\n" "help.text" msgid "OpenOffice.org 1.1.5 or StarOffice 7" -msgstr "OpenOffice.org 1.1.5 oder StarOffice 7" +msgstr "OpenOffice.org 1.1.5, StarOffice 7" #. qnHF4 #: 00000021.xhp @@ -4397,7 +4397,7 @@ "par_id0519200811530467\n" "help.text" msgid "OpenOffice.org 2.2 or StarOffice 8 Update 4" -msgstr "OpenOffice.org 2.2 oder StarOffice 8 Update 4" +msgstr "OpenOffice.org 2.2, StarOffice 8 Update 4" #. ENFwJ #: 00000021.xhp @@ -4460,7 +4460,7 @@ "par_id1001200912381174\n" "help.text" msgid "OpenOffice.org 3.2 or StarOffice 9.2" -msgstr "OpenOffice.org 3.2 oder StarOffice 9.2" +msgstr "OpenOffice.org 3.2, StarOffice 9.2" #. GGUsk #: 00000021.xhp @@ -4550,7 +4550,7 @@ "par_id3153178\n" "help.text" msgid "The text content of the document is located in content.xml." -msgstr "Der Text-Inhalt des Dokuments steht in content.xml." +msgstr "Der Textinhalt des Dokuments steht in content.xml." #. Zhydi #: 00000021.xhp @@ -4856,7 +4856,7 @@ "hd_id3143534\n" "help.text" msgid "More options" -msgstr "Mehr Optionen" +msgstr "Weitere Optionen" #. M9Gpu #: 00000200.xhp @@ -6026,7 +6026,7 @@ "par_id3147377\n" "help.text" msgid "Shows how the imported text will look after it is separated into columns. To apply a format to a column when it is imported, click a column and select a Column type. When you select a Column type, the column heading displays the applied format." -msgstr "Zeigt die importierten Daten nach Aufteilung in Spalten. Zum Zuweisen eines Formates klicken Sie in eine importierte Spalte und wählen Sie einen Spaltentyp. Wenn Sie einen Spaltentyp wählen, zeigt der Spaltenkopf das zugewiesene Format an." +msgstr "Zeigt die importierten Daten nach Aufteilung in Spalten an. Zum Zuweisen eines Formats klicken Sie in eine importierte Spalte und wählen einen Spaltentyp. Wenn Sie einen Spaltentyp wählen, zeigt der Spaltenkopf das zugewiesene Format an." #. 9jAjj #: 00000208.xhp @@ -6332,7 +6332,7 @@ "par_id3149140\n" "help.text" msgid "Key Shift+CommandCtrl+N" -msgstr "Umschalt+BefehlStrg+N" +msgstr "BefehlStrg+Umschalt+N" #. chsce #: 00000401.xhp @@ -7646,7 +7646,7 @@ "par_id3149578\n" "help.text" msgid "Shift+CommandCtrl+J" -msgstr "Tastatur: Umschalt+BefehlStrg+J" +msgstr "Tastatur: BefehlStrg+Umschalt+J" #. ARGs4 #: 00000403.xhp @@ -7844,7 +7844,7 @@ "par_id3149525\n" "help.text" msgid "Choose Format - Bullets and Numbering - Customize - Character button." -msgstr "Wählen Sie Format – Nummerierung und Aufzählungszeichen… – Register: Anpassen – Schaltfläche: Auswahl…." +msgstr "Wählen Sie Format – Aufzählungszeichen und Nummerierung… – Register: Anpassen – Schaltfläche: Auswahl…." #. sB3e2 #: 00000404.xhp @@ -7853,7 +7853,7 @@ "par_id3152372\n" "help.text" msgid "Choose Format - Bullets and Numbering - Customize - Character button." -msgstr "Wählen Sie Format – Nummerierung und Aufzählungszeichen… – Register: Anpassen – Schaltfläche: Auswahl…." +msgstr "Wählen Sie Format – Aufzählungszeichen und Nummerierung… – Register: Anpassen – Schaltfläche: Auswahl…." #. L5Fu9 #: 00000404.xhp @@ -7997,7 +7997,7 @@ "par_id3153144\n" "help.text" msgid "Choose Format - Chart Type." -msgstr "Wählen Sie Format – Diagrammtyp…." +msgstr "Wählen Sie Format – Diagrammtyp…" #. Vfm3s #: 00000404.xhp @@ -8015,7 +8015,7 @@ "par_id3154011\n" "help.text" msgid "Choose Format - Chart Type." -msgstr "Wählen Sie Format – Diagrammtyp…." +msgstr "Wählen Sie Format – Diagrammtyp…" #. S7Tqw #: 00000404.xhp @@ -8033,7 +8033,7 @@ "par_id3159179\n" "help.text" msgid "Choose Format - Chart Type." -msgstr "Wählen Sie Format – Diagrammtyp…." +msgstr "Wählen Sie Format – Diagrammtyp…" #. aCf7V #: 00000404.xhp @@ -9167,7 +9167,7 @@ "par_id3149825\n" "help.text" msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - AutoCaption." -msgstr "Öffnen Sie ein Textdokument, wählen Sie %PRODUCTNAME … EinstellungenExtras – Optionen… – %PRODUCTNAME Writer – Automatische Bildbeschriftung." +msgstr "Öffnen Sie ein Textdokument, wählen Sie %PRODUCTNAME … EinstellungenExtras – Optionen… – %PRODUCTNAME Writer – Automatische Beschriftung." #. B2n4N #: 00000406.xhp @@ -9203,7 +9203,7 @@ "par_id3155961\n" "help.text" msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Basic Fonts (Western)." -msgstr "Öffnen Sie ein Textdokument, wählen Sie %PRODUCTNAME – EinstellungenExtras – Optionen… – %PRODUCTNAME Writer – Grundschriftarten (Westlich)." +msgstr "Öffnen Sie ein Textdokument, wählen Sie %PRODUCTNAME – EinstellungenExtras – Optionen… – %PRODUCTNAME Writer – Grundschriftarten (westlich)." #. Ub9ts #: 00000406.xhp @@ -9212,7 +9212,7 @@ "par_id3159313\n" "help.text" msgid "Open a text document, choose %PRODUCTNAME - PreferencesTools - Options - %PRODUCTNAME Writer - Basic Fonts (Asian). Asian language support must be enabled." -msgstr "Öffnen Sie ein Textdokument, wählen Sie %PRODUCTNAME – EinstellungenExtras – Optionen… – %PRODUCTNAME Writer – Grundschriftarten (Asiatisch). Die Unterstützung für asiatische Sprachen muss aktiviert sein." +msgstr "Öffnen Sie ein Textdokument, wählen Sie %PRODUCTNAME – EinstellungenExtras – Optionen… – %PRODUCTNAME Writer – Grundschriftarten (asiatisch). Die Unterstützung für asiatische Sprachen muss aktiviert sein." #. MZAYL #: 00000406.xhp @@ -11408,7 +11408,7 @@ "par_id6058839\n" "help.text" msgid "On Form Design bar, click" -msgstr "Klicken Sie in der Symbolleiste Formular-Entwurf auf" +msgstr "Klicken Sie in der Symbolleiste Formularentwurf auf" #. EJCyJ #: 00040501.xhp @@ -11435,7 +11435,7 @@ "par_id2709433\n" "help.text" msgid "On Form Design bar, click" -msgstr "Klicken Sie in der Symbolleiste Formular-Entwurf auf" +msgstr "Klicken Sie in der Symbolleiste Formularentwurf auf" #. pNmAg #: 00040501.xhp @@ -11462,7 +11462,7 @@ "par_id9929502\n" "help.text" msgid "On Form Design bar, click" -msgstr "Klicken Sie in der Symbolleiste Formular-Entwurf auf" +msgstr "Klicken Sie in der Symbolleiste Formularentwurf auf" #. hgCuD #: 00040501.xhp @@ -11471,7 +11471,7 @@ "par_id3150749\n" "help.text" msgid "Icon Form Navigator" -msgstr "Symbol für Formular-Navigator" +msgstr "Symbol für Formularnavigator" #. QEjGP #: 00040501.xhp @@ -11480,7 +11480,7 @@ "par_id3147237\n" "help.text" msgid "Form Navigator" -msgstr "Formular-Navigator" +msgstr "Formularnavigator" #. Paybb #: 00040501.xhp @@ -11489,7 +11489,7 @@ "par_id4886928\n" "help.text" msgid "On Form Controls toolbar or Form Design bar, click" -msgstr "Klicken Sie in einer der Symbolleisten Formular-Steuerelemente oder Formular-Entwurf auf" +msgstr "Klicken Sie in einer der Symbolleisten Formular-Steuerelemente oder Formularentwurf auf" #. YgQWC #: 00040501.xhp @@ -11516,7 +11516,7 @@ "par_id3148828\n" "help.text" msgid "Open Form Navigator - select form - open context menu - choose Open in Design Mode." -msgstr "Öffnen Sie den Formular-Navigator – wählen Sie den Eintrag Formular aus – öffnen Sie das Kontextmenü – wählen Sie Im Entwurfsmodus öffnen." +msgstr "Öffnen Sie den Formularnavigator – wählen Sie den Eintrag Formular aus – öffnen Sie das Kontextmenü – wählen Sie Im Entwurfsmodus öffnen." #. mRTG5 #: 00040501.xhp @@ -11525,7 +11525,7 @@ "par_id8177434\n" "help.text" msgid "On Form Design bar, click" -msgstr "Klicken Sie in der Symbolleiste Formular-Entwurf auf" +msgstr "Klicken Sie in der Symbolleiste Formularentwurf auf" #. iGE3k #: 00040501.xhp @@ -11696,7 +11696,7 @@ "par_id3149528\n" "help.text" msgid "CommandCtrl+plus sign ($[officename] Impress, $[officename] Draw)" -msgstr "BefehlStrg +Pluszeichen ($[officename] Impress, $[officename] Draw)" +msgstr "BefehlStrg+Plus ($[officename] Impress, $[officename] Draw)" #. sEc4z #: 00040501.xhp @@ -11750,7 +11750,7 @@ "par_id3156064\n" "help.text" msgid "CommandCtrl+minus sign ($[officename] Impress, $[officename] Draw)" -msgstr "BefehlStrg +Minuszeichen ($[officename] Impress, $[officename] Draw)" +msgstr "BefehlStrg+Minus ($[officename] Impress, $[officename] Draw)" #. D2F6v #: 00040501.xhp @@ -11804,7 +11804,7 @@ "par_id3150690\n" "help.text" msgid "Shift+CommandCtrl+minus sign ($[officename] Impress, $[officename] Draw)" -msgstr "Umschalt+BefehlStrg +Minuszeichen ($[officename] Impress, $[officename] Draw)" +msgstr "BefehlStrg+Umschalt+Minus ($[officename] Impress, $[officename] Draw)" #. NkXED #: 00040501.xhp @@ -11858,7 +11858,7 @@ "par_id3153607\n" "help.text" msgid "To Foreground" -msgstr "In Vordergrund" +msgstr "In den Vordergrund" #. Fmk6D #: 00040501.xhp @@ -12542,7 +12542,7 @@ "par_id901592158395353\n" "help.text" msgid "Choose Format - Text Box and Shape - Area - Area" -msgstr "Wählen Sie Format – Objekt – Fläche… – Register: Fläche" +msgstr "Wählen Sie Format – Objekt – Fläche… – Register: Fläche." #. vAmBH #: 00040502.xhp @@ -12560,7 +12560,7 @@ "par_id771592156369992\n" "help.text" msgid "Choose Format - Page - Background tab" -msgstr "Wählen Sie Format – Seitenvorlage… – Register: Hintergrund" +msgstr "Wählen Sie Format – Seitenvorlage… – Register: Hintergrund." #. NP4xZ #: 00040502.xhp @@ -13982,7 +13982,7 @@ "par_id3150502\n" "help.text" msgid "To show or hide a docked window, click the icon." -msgstr "Klicken Sie auf das Symbol um das Fenster ein- oder auszublenden." +msgstr "Klicken Sie auf das Symbol, um das Fenster ein- oder auszublenden." #. yLEED #: 01000000.xhp @@ -13991,7 +13991,7 @@ "hd_id3150465\n" "help.text" msgid "AutoShow and AutoHide Docked Windows" -msgstr "AutoShow und AutoHide von angedockten Fenster" +msgstr "AutoShow und AutoHide für angedockte Fenster" #. VvJb6 #: 01000000.xhp @@ -14000,7 +14000,7 @@ "par_id3155504\n" "help.text" msgid "You can click the edge of a hidden docked window to open the window." -msgstr "Klicken Sie auf den Rand eines ausgeblendeten, angedockten Fensters um es zu öffnen." +msgstr "Klicken Sie auf den Rand eines ausgeblendeten angedockten Fensters, um es zu öffnen." #. acN6C #: 01000000.xhp @@ -14855,7 +14855,7 @@ "par_id3150749\n" "help.text" msgid "On the Form Navigation bar, click Record Search icon, then Similarity search check box, then click the Similarities button (database form view)." -msgstr "Klicken Sie in der Symbolleiste Formular-Navigation auf das Symbol Datensatz suchen…, aktivieren Sie das Markierfeld Ähnlichkeitssuche und klicken Sie auf die Schaltfläche Ähnlichkeiten… (Formularansicht von Datenbanken)." +msgstr "Klicken Sie in der Symbolleiste Formularnavigation auf das Symbol Datensatz suchen…, aktivieren Sie das Markierfeld Ähnlichkeitssuche und klicken Sie auf die Schaltfläche Ähnlichkeiten… (Formularansicht von Datenbanken)." #. 4NRpt #: edit_menu.xhp diff -Nru libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/shared/01.po libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/shared/01.po --- libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/shared/01.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/shared/01.po 2022-10-27 10:11:14.000000000 +0000 @@ -4,7 +4,7 @@ "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-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-08-18 16:53+0000\n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" "Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" @@ -7790,7 +7790,7 @@ "tit\n" "help.text" msgid "Find & Replace" -msgstr "Suchen und Ersetzen" +msgstr "Suchen und ersetzen" #. Qzs8e #: 02100000.xhp @@ -7799,7 +7799,7 @@ "bm_id501629842533945\n" "help.text" msgid "Find & Replace dialog" -msgstr "Suchen und Ersetzen (Dialog)" +msgstr "Suchen und ersetzen (Dialog)" #. FGyuJ #: 02100000.xhp @@ -7808,7 +7808,7 @@ "hd_id3154044\n" "help.text" msgid " Find & Replace " -msgstr "Suchen und Ersetzen" +msgstr "Suchen und ersetzen" #. ANaCL #: 02100000.xhp @@ -8033,7 +8033,7 @@ "hd_id3154299\n" "help.text" msgid "Find All" -msgstr "Suche alle" +msgstr "Alle suchen" #. FmGsM #: 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 "Nachdem Sie den Dialog Suchen und Ersetzen geschlossen haben, können Sie das zuletzt eingegebene Suchkriterium mit Umschalt+BefehlStrg+F weiterhin suchen." +msgstr "Nachdem Sie den Dialog Suchen und ersetzen geschlossen haben, können Sie das zuletzt eingegebene Suchkriterium mit BefehlStrg+Umschalt+F weiterhin suchen." #. GspKW #: 02100001.xhp @@ -8735,7 +8735,7 @@ "par_id3147209\n" "help.text" msgid "The special character that follows it is interpreted as a normal character and not as a regular expression meta character (except for the combinations \"\\n\", \"\\t\", \"\\b\", \"\\>\" and \"\\<\"). For example, \"tree\\.\" matches \"tree.\", not \"treed\" or \"trees\"." -msgstr "Das darauf folgende Sonderzeichen wird als normales Zeichen und nicht als Metazeichen für reguläre Ausdrücke interpretiert (mit Ausnahme der Kombinationen \"\\n\", \"\\t\", \"\\b\", \"\\>\" und \"\\<\"). Zum Beispiel entspricht \"alle\\.\" \"alle.\", aber nicht \"alles\" oder \"aller\"." +msgstr "Das darauffolgende Sonderzeichen wird als normales Zeichen und nicht als Metazeichen für reguläre Ausdrücke interpretiert (mit Ausnahme der Kombinationen \"\\n\", \"\\t\", \"\\b\", \"\\>\" und \"\\<\"). Zum Beispiel entspricht \"alle\\.\" \"alle.\", aber nicht \"alles\" oder \"aller\"." #. sDmtU #: 02100001.xhp @@ -9032,7 +9032,7 @@ "par_id3152576\n" "help.text" msgid "Represents a nonprinting character." -msgstr "Steht für ein nicht-druckbares Zeichen." +msgstr "Steht für ein nicht druckbares Zeichen." #. YCGiZ #: 02100001.xhp @@ -11525,7 +11525,7 @@ "par_id3159194\n" "help.text" msgid "Allows you to attach URLs to specific areas, called hotspots, on a graphic or a group of graphics. An image map is a group of one or more hotspots." -msgstr "Hier können Sie speziellen Bereichen, den so genannten Hotspots, in einer Grafik oder einer Gruppe von Grafiken URLs zuweisen. Eine verweissensitive Grafik ist eine Gruppe von Hotspots." +msgstr "Hier können Sie speziellen Bereichen, den sogenannten Hotspots, in einer Grafik oder einer Gruppe von Grafiken URLs zuweisen. Eine verweissensitive Grafik ist eine Gruppe von Hotspots." #. qyFGR #: 02220000.xhp @@ -13892,7 +13892,7 @@ "par_id3154389\n" "help.text" msgid "Set the zoom factor at which to display the current document and all documents of the same type that you open thereafter." -msgstr "Bestimmen Sie den Zoomfaktor für die Anzeige des aktuellen Dokuments und aller Dokumente des selben Typs, die Sie anschließend öffnen." +msgstr "Bestimmen Sie den Zoomfaktor für die Anzeige des aktuellen Dokuments und aller Dokumente desselben Typs, die Sie anschließend öffnen." #. 7M75C #: 03010000.xhp @@ -15800,7 +15800,7 @@ "par_id3154613\n" "help.text" msgid "The submenu presents various sources that an image, audio or video can be insert from." -msgstr "Das Untermenü biete verschiedene Quellen an, aus denen ein Bild, eine Audio- oder eine Videodatei eingefügt werden kann." +msgstr "Das Untermenü bietet verschiedene Quellen an, aus denen ein Bild, eine Audio- oder eine Videodatei eingefügt werden kann." #. yhJ3D #: 05010000.xhp @@ -15863,7 +15863,7 @@ "par_id3157959\n" "help.text" msgid "To stop applying a direct format, such as underlining, while you type new text at the end of a line, press Shift+Ctrl+X." -msgstr "Um die Anwendung eines direkten Formats, beispielsweise eine Unterstreichungen, zu beenden, während Sie neuen Text am Ende einer Zeile eingeben, drücken Sie Umschalt+Strg+X." +msgstr "Um die Anwendung eines direkten Formats, beispielsweise eine Unterstreichungen, zu beenden, während Sie neuen Text am Ende einer Zeile eingeben, drücken Sie Strg+Umschalt+X." #. uGgku #: 05010000.xhp @@ -18086,7 +18086,7 @@ "par_id3153795\n" "help.text" msgid "To specify a calendar format that is independent of the locale, add a modifier in front of the date format. For example, to display a date using the Jewish calendar format in a non-Hebrew locale, enter: [~jewish]DD/MM/YYYY." -msgstr "Zum Definieren eines Kalenderformates, das unabhängig vom Gebietsschema ist, setzen Sie eine der folgenden Zeichenketten vor das Datumsformat. Um beispielsweise auch in nicht-hebräischen Gebietsschemata ein jüdisches Kalenderformat zu verwenden, geben Sie ein: [~jewish]TT/MM/JJJJ." +msgstr "Zum Definieren eines Kalenderformats, das unabhängig vom Gebietsschema ist, setzen Sie eine der folgenden Zeichenketten vor das Datumsformat. Um beispielsweise auch in nicht hebräischen Gebietsschemata ein jüdisches Kalenderformat zu verwenden, geben Sie ein: [~jewish]TT/MM/JJJJ." #. D44yB #: 05020301.xhp @@ -21794,7 +21794,7 @@ "par_id3150651\n" "help.text" msgid "Indents the first line of a paragraph by the amount that you enter. To create a hanging indent enter a positive value for \"Before text\" and a negative value for \"First line\". To indent the first line of a paragraph that uses numbering or bullets, choose \"Format - Bullets and Numbering - Position\"." -msgstr "Rückt die erste Zeile eines Absatzes um den angegebenen Wert ein. Um einen hängenden Einzug zu erzeugen, geben Sie einen positiven Wert für \"Vor Text\" und einen negativen Wer für \"Erste Zeile\" ein. Um die erste Zeile eines nummerierten oder mit Aufzählungszeichen versehenen Absatzes einzurücken, wählen Sie \"Format – Nummerierung und Aufzählungszeichen – Register: Position\"." +msgstr "Rückt die erste Zeile eines Absatzes um den angegebenen Wert ein. Um einen hängenden Einzug zu erzeugen, geben Sie einen positiven Wert für \"Vor Text\" und einen negativen Wert für \"Erste Zeile\" ein. Um die erste Zeile eines mit Aufzählungszeichen versehenen oder nummerierten Absatzes einzurücken, wählen Sie \"Format – Aufzählungszeichen und Nummerierung – Register: Position\"." #. yWgGc #: 05030100.xhp @@ -26717,7 +26717,7 @@ "par_id3155364\n" "help.text" msgid "The name is also displayed in the Status Bar when you select the object." -msgstr "Dieser Name wird bei Auswahl des Objektes auch in der Statusleiste angezeigt." +msgstr "Dieser Name wird bei Auswahl des Objekts auch in der Statusleiste angezeigt." #. VP8X4 #: 05190000.xhp @@ -27482,7 +27482,7 @@ "par_id3149827\n" "help.text" msgid "Choose a predefined arrow style symbol from the list box." -msgstr "In dem Kombinationsfeld wählen Sie aus den vorgegebenen Linienspitze eine aus." +msgstr "In dem Kombinationsfeld wählen Sie aus den vorgegebenen Linienspitzen eine aus." #. WbmbF #: 05200300.xhp @@ -30749,7 +30749,7 @@ "tit\n" "help.text" msgid "To Foreground" -msgstr "In Vordergrund" +msgstr "In den Vordergrund" #. NDnSk #: 05250500.xhp @@ -31730,7 +31730,7 @@ "par_id3153323\n" "help.text" msgid "Groups keep together selected objects, so that they can be moved or formatted as a single object." -msgstr "Hiermit gruppieren Sie die ausgewählten Objekte, sodass sie anschließend wie ein Einzelobjekt verschoben werden können." +msgstr "Hiermit gruppieren Sie die ausgewählten Objekte, sodass sie anschließend wie ein Einzelobjekt verschoben oder formatiert werden können." #. d2ZwE #: 05290000.xhp @@ -33359,7 +33359,7 @@ "par_id3152598\n" "help.text" msgid "Use the Form Navigation bar at the bottom of the Data Source view to navigate between different records." -msgstr "Zum Umschalten zwischen den verschiedenen Datensätzen steht Ihnen die Symbolleiste Formular-Navigator am unteren Rand der Datenquellenansicht zur Verfügung." +msgstr "Zum Umschalten zwischen den verschiedenen Datensätzen steht Ihnen die Symbolleiste Formularnavigator am unteren Rand der Datenquellenansicht zur Verfügung." #. FDmqd #: 05340400.xhp @@ -34781,7 +34781,7 @@ "par_id3147000\n" "help.text" msgid "Sets the properties of the surface texture for the selected 3D object. This feature is only available after you apply a surface texture to the selected object. To quickly apply a surface texture, open the Gallery, hold down Shift+CommandCtrl, and then drag an image onto the selected 3D object." -msgstr "Hier legen Sie die Textur-Eigenschaften des ausgewählten 3D-Objekts fest. Diese Funktion ist nur für Objekte mit zugewiesener Textur verfügbar. Zum schnellen Zuweisen einer Textur öffnen Sie die Gallery, halten Umschalt+BefehlStrg gedrückt und ziehen eine der Grafiken auf das ausgewählte 3D-Objekt." +msgstr "Hier legen Sie die Textur-Eigenschaften des ausgewählten 3D-Objekts fest. Diese Funktion ist nur für Objekte mit zugewiesener Textur verfügbar. Zum schnellen Zuweisen einer Textur öffnen Sie die Gallery, halten BefehlStrg+Umschalt gedrückt und ziehen eine der Grafiken auf das ausgewählte 3D-Objekt." #. xWF3J #: 05350500.xhp @@ -35141,7 +35141,7 @@ "par_id3152878\n" "help.text" msgid "Click the respective buttons to define the texture for the object Y axis." -msgstr "Mit den zugehörigen Schaltflächen legen Sie die Anordnung der Textur für die Y-Achse Ihres Objektes fest." +msgstr "Mit den zugehörigen Schaltflächen legen Sie die Anordnung der Textur für die Y-Achse Ihres Objekts fest." #. AhuNF #: 05350500.xhp @@ -39128,7 +39128,7 @@ "hd_id3149551\n" "help.text" msgid "Bullets and Numbering" -msgstr "Nummerierung und Aufzählungszeichen" +msgstr "Aufzählungszeichen und Nummerierung" #. S7psX #: 06050000.xhp @@ -39137,7 +39137,7 @@ "par_id3150146\n" "help.text" msgid "Adds numbering or bullets to the current paragraph or to selected paragraphs, and lets you edit format of the numbering or bullets." -msgstr "Fügt dem aktuellen Absatz oder den ausgewählten Absätzen eine Nummerierung oder Aufzählungszeichen hinzu und lässt Sie das Format der Nummerierung oder der Aufzählungszeichen bearbeiten." +msgstr "Fügt dem aktuellen Absatz oder den ausgewählten Absätzen Aufzählungszeichen oder eine Nummerierung hinzu und lässt Sie das Format der Aufzählungszeichen oder der Nummerierung bearbeiten." #. 7wAZT #: 06050000.xhp @@ -48254,7 +48254,7 @@ "par_idN10623\n" "help.text" msgid "%PRODUCTNAME Basic libraries" -msgstr "%PRODUCTNAME Basic-Bibliotheken" +msgstr "%PRODUCTNAME-Basic-Bibliotheken" #. vDHvv #: packagemanager.xhp @@ -48263,7 +48263,7 @@ "par_idN106E8\n" "help.text" msgid "%PRODUCTNAME dialog libraries" -msgstr "%PRODUCTNAME-Dialogbibliotheken" +msgstr "%PRODUCTNAME-Dialog-Bibliotheken" #. 9YEdi #: packagemanager.xhp @@ -48272,7 +48272,7 @@ "par_idN106F5\n" "help.text" msgid "Extension files (*.oxt files containing one or more extensions of the above listed types)" -msgstr "Extension-Dateien (*.oxt-Dateien mit mindestens einer Erweiterung der oben aufgeführten Dateitypen)" +msgstr "Extension-Dateien (oxt-Dateien mit mindestens einer Erweiterung der oben aufgeführten Dateitypen)" #. RqSaQ #: packagemanager.xhp @@ -48335,7 +48335,7 @@ "par_id7857905\n" "help.text" msgid "You can find a collection of extensions on the Web. Click the \"Get more extensions online\" link in the Extension Manager to open your Web browser and see the https://extensions.libreoffice.org/ page." -msgstr "Sie finden eine Sammlung von Extensions im Netz. Klicken Sie im Extension-Manager auf den Link \"Laden Sie weitere Extensions aus dem Internet herunter…\", um Ihren Webbrowser zu öffnen und die Seite https://extensions.libreoffice.org/ anzuzeigen." +msgstr "Sie finden eine Sammlung von Extensions im Netz. Klicken Sie im Extension-Manager auf den Link \"Laden Sie weitere Extensions aus dem Internet herunter\", um Ihren Webbrowser zu öffnen und die Seite https://extensions.libreoffice.org/ anzuzeigen." #. eeTRp #: packagemanager.xhp @@ -49136,7 +49136,7 @@ "par_id281120160939285779\n" "help.text" msgid "Safe mode is a mode where %PRODUCTNAME temporarily starts with a fresh user profile and disables hardware acceleration. It helps to restore a non-working %PRODUCTNAME instance. " -msgstr "Der abgesicherte Modus ist ein Modus, in welchem %PRODUCTNAME temporär mit einem frischen Benutzerprofil startet und die Hardwarebeschleunigung deaktiviert wird. Dies hilft, eine nicht mehr funktionierende %PRODUCTNAME-Instanz wiederherzustellen." +msgstr "Der abgesicherte Modus ist ein Modus, in dem %PRODUCTNAME temporär mit einem frischen Benutzerprofil startet und die Hardwarebeschleunigung deaktiviert wird. Dies hilft, eine nicht mehr funktionierende %PRODUCTNAME-Instanz wiederherzustellen." #. 69t7D #: profile_safe_mode.xhp @@ -50459,7 +50459,7 @@ "par_id102620090953596\n" "help.text" msgid "Allows you to use the same field name for multiple fields in the generated PDF file. If disabled, field names will be exported using generated unique names." -msgstr "Erlaubt den Gebrauch des selben Feldname für mehrere Felder in der generierten PDF-Datei. Falls deaktiviert, werden Feldnamen mit generierten eindeutigen Namen exportiert." +msgstr "Erlaubt die Verwendung desselben Feldnamens für mehrere Felder in der generierten PDF-Datei. Falls deaktiviert, werden Feldnamen mit generierten eindeutigen Namen exportiert." #. 4EM34 #: ref_pdf_export_general.xhp @@ -53609,7 +53609,7 @@ "par_id2318796\n" "help.text" msgid "Specifies a regular expression pattern. Strings validated against the data type must conform to this pattern to be valid. The XSD data type syntax for regular expressions is different from the regular expression syntax used elsewhere in %PRODUCTNAME, for example in the Find & Replace dialog." -msgstr "Hiermit legen Sie ein Muster für einen regulären Ausdruck fest. Zeichenketten, die gegen den Datentyp ausgewertet werden, müssen diesem Muster entsprechen, anderenfalls sind sie ungültig. Die Syntax des XSD-Datentyps für reguläre Ausdrücke unterscheidet sich von der Syntax für reguläre Ausdrücke, die an anderen Stellen in %PRODUCTNAME verwendet wird, beispielsweise im Dialog Suchen und Ersetzen." +msgstr "Hiermit legen Sie ein Muster für einen regulären Ausdruck fest. Zeichenfolgen, die gegen den Datentyp ausgewertet werden, müssen diesem Muster entsprechen, anderenfalls sind sie ungültig. Die Syntax des XSD-Datentyps für reguläre Ausdrücke unterscheidet sich von der Syntax für reguläre Ausdrücke, die an anderen Stellen in %PRODUCTNAME verwendet wird, beispielsweise im Dialog Suchen und ersetzen." #. rjLF5 #: xformsdatatab.xhp diff -Nru libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/shared/02.po libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/shared/02.po --- libreoffice-7.3.6/translations/source/de/helpcontent2/source/text/shared/02.po 2022-09-02 16:21:07.000000000 +0000 +++ libreoffice-7.3.7/translations/source/de/helpcontent2/source/text/shared/02.po 2022-10-27 10:11:14.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-08-03 17:45+0000\n" -"Last-Translator: Annabelle Wübbelsmann \n" +"PO-Revision-Date: 2022-10-27 08:40+0000\n" +"Last-Translator: Christian Kühl \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -1076,7 +1076,7 @@ "par_idN10CF7\n" "help.text" msgid "Form Design" -msgstr "Formular-Entwurf" +msgstr "Formularentwurf" #. vxxz2 #: 01170000.xhp @@ -1094,7 +1094,7 @@ "par_idN11B57\n" "help.text" msgid "Wizards On/Off" -msgstr "Assistenten ein/aus" +msgstr "Steuerelement-Assistenten ein/aus" #. GY3P2 #: 01170000.xhp @@ -1112,7 +1112,7 @@ "par_idN11B76\n" "help.text" msgid "Turns on and turns off the automatic form controls wizards." -msgstr "Schaltet die Assistenten für automatische Formular-Steuerelemente ein beziehungsweise aus." +msgstr "Schaltet den Assistenten für automatische Formular-Steuerelemente ein beziehungsweise aus." #. DAjtU #: 01170000.xhp @@ -1175,7 +1175,7 @@ "par_idN11ABC\n" "help.text" msgid "Scrollbar" -msgstr "Bildlaufleisten" +msgstr "Bildlaufleiste" #. Mhj4A #: 01170000.xhp @@ -2507,7 +2507,7 @@ "par_id3149416\n" "help.text" msgid "If you use the keyboard only to travel through controls in your document, you will find one difference to the other types of controls: the Tab key does not move the cursor to the next control, but moves to the next column inside the table control. Press CommandCtrl+Tab to move to the next control, or press Shift+CommandCtrl+Tab to move to the previous control." -msgstr "Wenn Sie nur die Tastatur verwenden, um durch die Steuerelemente Ihres Dokuments zu navigieren, werden Sie ein Unterschied zu den anderen Steuerelementen bemerken. Die Tabulatortaste verschiebt den Cursor nicht in das nächste Steuerelement, sondern in die nächste Spalte des Tabellensteuerelements. Drücken Sie BefehlStrg+Tabulator, um zum nächstem Steuerelement, oder Umschalt+BefehlStrg+Tabulator, um zum vorigem Steuerelement zu gelangen." +msgstr "Wenn Sie nur die Tastatur verwenden, um durch die Steuerelemente Ihres Dokuments zu navigieren, werden Sie ein Unterschied zu den anderen Steuerelementen bemerken. Die Tabulatortaste bewegt den Cursor nicht in das nächste Steuerelement, sondern in die nächste Spalte des Tabellensteuerelements. Drücken Sie BefehlStrg+Tabulator, um zum nächstem Steuerelement, oder Umschalt+BefehlStrg+Tabulator, um zum vorigem Steuerelement zu gelangen." #. usstA #: 01170004.xhp @@ -2768,7 +2768,7 @@ "par_id3156422\n" "help.text" msgid "As with list boxes or combo boxes, you can open or close the list with a mouse click at the arrow on the right end of the field. However, the input here can be entered either in the opened list or in the top text field. An exception is the properties that expect a list representation, for example, the property \"List Entries\", which can be set for the control fields List Box and Combo Box. Here, you can only edit the entries when the field is opened." -msgstr "Wie bei Kombinationsfeldern können Sie die Liste mit einem Klick auf den Pfeil am rechten Rand des Feldes mit einem Mausklick auf- und zuklappen. Die Eingabe kann hier allerdings sowohl in der aufgeklappten Liste als auch im oberen Textfeld erfolgen. Eine Ausnahme bilden die Eigenschaften, die eine Listendarstellung erwarten, wie beispielsweise die Eigenschaft \"Listen-Einträge\", die für die Steuerelemente Listenfeld und Kombinationsfeld gesetzt werden kann. Hier können Sie die Einträge nur im aufgeklappten Zustand bearbeiten." +msgstr "Wie bei Kombinationsfeldern können Sie die Liste mit einem Klick auf den Pfeil am rechten Rand des Feldes mit einem Mausklick auf- und zuklappen. Die Eingabe kann hier allerdings sowohl in der aufgeklappten Liste als auch im oberen Textfeld erfolgen. Eine Ausnahme bilden die Eigenschaften, die eine Listendarstellung erwarten, wie beispielsweise die Eigenschaft \"Listeneinträge\", die für die Steuerelemente Listenfeld und Kombinationsfeld gesetzt werden kann. Hier können Sie die Einträge nur im aufgeklappten Zustand bearbeiten." #. RBV9J #: 01170101.xhp @@ -2804,7 +2804,7 @@ "par_id3155342\n" "help.text" msgid "If you export the current form document to HTML format, the default control values are exported, not the current control values. Default values are determined - depending on the type of control - by the properties' Default value (for example, in text fields), Default status (for check boxes and option fields), and Default selection (for list boxes)." -msgstr "Wenn Sie das aktuelle Formular-Dokument in das HTML-Format exportieren, werden nur die Standardwerte der Steuerelemente exportiert, nicht die aktuellen. Die Standardwerte sind - je nach Art des Steuerelements - durch die Eigenschaften Standardwert (beispielsweise in Textfeldern), Standardstatus (für Auswahl- und Optionsfelder) und Standardauswahl (für Listenfelder) festgelegt." +msgstr "Wenn Sie das aktuelle Formulardokument in das HTML-Format exportieren, werden nur die Standardwerte der Steuerelemente exportiert, nicht die aktuellen. Die Standardwerte sind - je nach Art des Steuerelements - durch die Eigenschaften Standardwert (beispielsweise in Textfeldern), Standardstatus (für Auswahl- und Optionsfelder) und Standardauswahl (für Listenfelder) festgelegt." #. FbjBr #: 01170101.xhp @@ -3920,7 +3920,7 @@ "hd_id3145756\n" "help.text" msgid "List entries" -msgstr "Listen-Einträge" +msgstr "Listeneinträge" #. 5FGGc #: 01170101.xhp @@ -3929,7 +3929,7 @@ "par_id3151300\n" "help.text" msgid "Defines the list entries visible in the document. Open this list and type your text. Use Shift+Enter for a new line. With list and combo boxes, you can define the list entries that will be visible in the document. Open the List entries field and type your text. Please note the tips referring to the keyboard controls." -msgstr "Bestimmt die im Dokument sichtbaren Listeneinträge. Öffnen Sie diese Liste und geben Sie Ihren Text ein. Verwenden Sie Umschalt+Eingabetaste für eine neue Zeile. Bei Listen- und Kombinationsfeldern können Sie die im Dokument sichtbaren Listeneinträge vorgeben. Öffnen Sie das Feld Listen-Einträge und geben Sie den Text ein. Beachten Sie bitte die Tipps bezogen auf die Tastatur-Steuerung." +msgstr "Bestimmt die im Dokument sichtbaren Listeneinträge. Öffnen Sie diese Liste und geben Sie Ihren Text ein. Verwenden Sie Umschalt+Eingabetaste für eine neue Zeile. Bei Listen- und Kombinationsfeldern können Sie die im Dokument sichtbaren Listeneinträge vorgeben. Öffnen Sie das Feld Listeneinträge und geben Sie den Text ein. Beachten Sie bitte die Tipps bezogen auf die Tastatursteuerung." #. ELF5e #: 01170101.xhp @@ -3965,7 +3965,7 @@ "par_id3150511\n" "help.text" msgid "For HTML documents, a list entry entered on the General tab corresponds to the HTML tag